search.install

Install, update, and uninstall functions for the Search module. File core/modules/search/search.install Functions Name Description search_requirements Implements hook_requirements(). search_schema Implements hook_schema().

UserAuthenticationController::$serializer

The serializer. Type: \Symfony\Component\Serializer\Serializer File core/modules/user/src/Controller/UserAuthenticationController.php, line 80 Class UserAuthenticationController Provides controllers for login, login status and logout via HTTP requests. Namespace Drupal\user\Controller Code protected $serializer;

FormStateInterface::prepareCallback

public FormStateInterface::prepareCallback($callback) Converts support notations for a form callback to a valid callable. Specifically, supports methods on the form/callback object as strings when they start with ::, for example "::submitForm()". Parameters string|array $callback: The callback. Return value array|string A valid callable. File core/lib/Drupal/Core/Form/FormStateInterface.php, line 588 Class FormStateInterface Provides an interface for an object containing the current stat

MenuLinkDefault::$staticOverride

The static menu link service used to store updates to weight/parent etc. Type: \Drupal\Core\Menu\StaticMenuLinkOverridesInterface File core/lib/Drupal/Core/Menu/MenuLinkDefault.php, line 29 Class MenuLinkDefault Provides a default implementation for menu link plugins. Namespace Drupal\Core\Menu Code protected $staticOverride;

MenuLinkContentForm::__construct

public MenuLinkContentForm::__construct(EntityManagerInterface $entity_manager, MenuParentFormSelectorInterface $menu_parent_selector, LanguageManagerInterface $language_manager, PathValidatorInterface $path_validator) Constructs a MenuLinkContentForm object. Parameters \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager. \Drupal\Core\Menu\MenuParentFormSelectorInterface $menu_parent_selector: The menu parent form selector service. \Drupal\Core\Language\LanguageManag

ForumController::__construct

public ForumController::__construct(ForumManagerInterface $forum_manager, VocabularyStorageInterface $vocabulary_storage, TermStorageInterface $term_storage, AccountInterface $current_user, EntityAccessControlHandlerInterface $node_access, array $field_map, EntityStorageInterface $node_type_storage, RendererInterface $renderer, EntityTypeInterface $node_entity_type_definition, EntityTypeInterface $comment_entity_type_definition) Constructs a ForumController object. Parameters \Drupal\forum\For

TriggerPreviewCommand::render

public TriggerPreviewCommand::render() Return an array to be run through json_encode and sent to the client. Overrides CommandInterface::render File core/modules/views/src/Ajax/TriggerPreviewCommand.php, line 17 Class TriggerPreviewCommand Provides an AJAX command for triggering the views live preview. Namespace Drupal\views\Ajax Code public function render() { return array( 'command' => 'viewsTriggerPreview', ); }

BaseFieldDefinition::isMultiple

public BaseFieldDefinition::isMultiple() Returns whether the field can contain multiple items. Return value bool TRUE if the field can contain multiple items, FALSE otherwise. Overrides FieldStorageDefinitionInterface::isMultiple File core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 281 Class BaseFieldDefinition A class for defining entity fields. Namespace Drupal\Core\Field Code public function isMultiple() { $cardinality = $this->getCardinality(); return ($cardinality

AccessAwareRouter::match

public AccessAwareRouter::match($pathinfo) Throws \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException Thrown when access checking failed. Overrides AccessAwareRouterInterface::match File core/lib/Drupal/Core/Routing/AccessAwareRouter.php, line 133 Class AccessAwareRouter A router class for Drupal with access check and upcasting. Namespace Drupal\Core\Routing Code public function match($pathinfo) { return $this->matchRequest(Request::create($pathinfo)); }

UpdaterFileTransferException

Defines a child class of Drupal\Core\Updater\UpdaterException that indicates a Drupal\Core\FileTransfer\FileTransfer exception. We have to catch Drupal\Core\FileTransfer\FileTransfer exceptions and wrap those in t(), since Drupal\Core\FileTransfer\FileTransfer is so low-level that it doesn't use any Drupal APIs and none of the strings are translated. Hierarchy class \Drupal\Core\Updater\UpdaterException extends \Exceptionclass \Drupal\Core\Updater\UpdaterFileTransferException File core/lib/