AuthenticationProviderPass::process

public AuthenticationProviderPass::process(ContainerBuilder $container) You can modify the container here before it is dumped to PHP code. Parameters ContainerBuilder $container: Overrides CompilerPassInterface::process File core/lib/Drupal/Core/DependencyInjection/Compiler/AuthenticationProviderPass.php, line 16 Class AuthenticationProviderPass Registers the authentication_providers container parameter. Namespace Drupal\Core\DependencyInjection\Compiler Code public function process(C

DrupalKernel::$classLoader

The class loader object. Type: \Composer\Autoload\ClassLoader File core/lib/Drupal/Core/DrupalKernel.php, line 148 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $classLoader;

RoleForm::save

public RoleForm::save(array $form, FormStateInterface $form_state) Form submission handler for the 'save' action. Normally this method should be overridden to provide specific messages to the user and redirect the form after the entity has been saved. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value int Either SAVED_NEW or SAVED_UPDATED, depending on the operation pe

DatabaseCacheTagsChecksum::reset

public DatabaseCacheTagsChecksum::reset() Reset statically cached tags. This is only used by tests. Overrides CacheTagsChecksumInterface::reset File core/lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php, line 136 Class DatabaseCacheTagsChecksum Cache tags invalidations checksum implementation that uses the database. Namespace Drupal\Core\Cache Code public function reset() { $this->tagCache = array(); $this->invalidatedTags = array(); }

PoHeader::getLanguageName

PoHeader::getLanguageName() Gets the human readable language name. Return value string The human readable language name. File core/lib/Drupal/Component/Gettext/PoHeader.php, line 108 Class PoHeader Gettext PO header handler. Namespace Drupal\Component\Gettext Code function getLanguageName() { return $this->_languageName; }

EntityConstraintViolationListInterface::filterByFields

public EntityConstraintViolationListInterface::filterByFields(array $field_names) Filters this violation list by the given fields. The returned object just has violations attached to the provided fields. When violations should be displayed for a sub-set of visible fields only, this method may be used to filter the set of visible violations first. Parameters string[] $field_names: The names of the fields to filter violations for. Return value $this File core/lib/Drupal/Core/Entity/EntityConstr

RefinableCacheableDependencyTrait::$cacheMaxAge

Cache max-age. Type: int File core/lib/Drupal/Core/Cache/RefinableCacheableDependencyTrait.php, line 29 Class RefinableCacheableDependencyTrait Trait for \Drupal\Core\Cache\RefinableCacheableDependencyInterface. Namespace Drupal\Core\Cache Code protected $cacheMaxAge = Cache::PERMANENT;

AuthenticationManager::authenticate

public AuthenticationManager::authenticate(Request $request) Authenticates the user. Parameters \Symfony\Component\HttpFoundation\Request|null $request: The request object. Return value \Drupal\Core\Session\AccountInterface|null AccountInterface - in case of a successful authentication. NULL - in case where authentication failed. Overrides AuthenticationProviderInterface::authenticate File core/lib/Drupal/Core/Authentication/AuthenticationManager.php, line 47 Class AuthenticationManager

MenuTreeStorage::$menuCacheBackend

Cache backend instance for the extracted tree data. Type: \Drupal\Core\Cache\CacheBackendInterface File core/lib/Drupal/Core/Menu/MenuTreeStorage.php, line 37 Class MenuTreeStorage Provides a menu tree storage using the database. Namespace Drupal\Core\Menu Code protected $menuCacheBackend;

hook_entity_field_storage_info

hook_entity_field_storage_info(\Drupal\Core\Entity\EntityTypeInterface $entity_type) Provides field storage definitions for a content entity type. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition. Return value \Drupal\Core\Field\FieldStorageDefinitionInterface[] An array of field storage definitions, keyed by field name. See also hook_entity_field_storage_info_alter() \Drupal\Core\Field\FieldStorageDefinitionInterface \Drupal\Core\Entity\EntityManag