outside_in.module

Allows configuring blocks and other configuration from the site front-end. File core/modules/outside_in/outside_in.module Functions Name Description outside_in_block_alter Implements hook_block_alter(). outside_in_block_view_alter Implements hook_block_view_alter(). outside_in_contextual_links_view_alter Implements hook_contextual_links_view_alter(). outside_in_css_alter Implements hook_css_alter(). outside_in_element_info_alter Implements hook_element_info_alter().

LanguageServiceProvider::alter

public LanguageServiceProvider::alter(ContainerBuilder $container) Modifies existing service definitions. Parameters ContainerBuilder $container: The ContainerBuilder whose service definitions can be altered. Overrides ServiceProviderBase::alter File core/modules/language/src/LanguageServiceProvider.php, line 46 Class LanguageServiceProvider Overrides the language_manager service to point to language's module one. Namespace Drupal\language Code public function alter(ContainerBuilder $

EntityTypeManagerInterface

Provides an interface for entity type managers. Hierarchy interface \Drupal\Component\Plugin\PluginManagerInterface; interface \Drupal\Component\Plugin\Discovery\CachedDiscoveryInterfaceinterface \Drupal\Core\Entity\EntityTypeManagerInterface File core/lib/Drupal/Core/Entity/EntityTypeManagerInterface.php, line 11 Namespace Drupal\Core\Entity Members Name Modifiers Type Description CachedDiscoveryInterface::clearCachedDefinitions public function Clears static and persis

Drupal::entityDefinitionUpdateManager

public static Drupal::entityDefinitionUpdateManager() Returns the entity definition update manager. Return value \Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface The entity definition update manager. File core/lib/Drupal.php, line 720 Contains \Drupal. Class Drupal Static Service Container wrapper. Code public static function entityDefinitionUpdateManager() { return static::getContainer()->get('entity.definition_update_manager'); }

DataType::$unwrap_for_canonical_representation

Whether the typed object wraps the canonical representation of the data. Type: bool See also \Drupal\Core\TypedData\TypedDataManager::getCanonicalRepresentation() File core/lib/Drupal/Core/TypedData/Annotation/DataType.php, line 111 Class DataType Defines a data type annotation object. Namespace Drupal\Core\TypedData\Annotation Code public $unwrap_for_canonical_representation = TRUE;

PrivateTempStore::getOwner

protected PrivateTempStore::getOwner() Gets the current owner based on the current user or the session ID. Return value string The owner. File core/modules/user/src/PrivateTempStore.php, line 203 Class PrivateTempStore Stores and retrieves temporary data for a given owner. Namespace Drupal\user Code protected function getOwner() { return $this->currentUser->id() ? : $this->requestStack->getCurrentRequest()->getSession()->getId(); }

LanguageServiceProvider::getDefaultLanguageValues

protected LanguageServiceProvider::getDefaultLanguageValues() Gets the default language values. Return value array|bool Returns the default language values for the language configured in system.site:default_langcode if the corresponding configuration entity exists, otherwise FALSE. File core/modules/language/src/LanguageServiceProvider.php, line 94 Class LanguageServiceProvider Overrides the language_manager service to point to language's module one. Namespace Drupal\language Code pro

Schema::COMMENT_MAX_COLUMN

Maximum length of a column comment in MySQL. File core/lib/Drupal/Core/Database/Driver/mysql/Schema.php, line 30 Class Schema MySQL implementation of \Drupal\Core\Database\Schema. Namespace Drupal\Core\Database\Driver\mysql Code const COMMENT_MAX_COLUMN = 255;

FieldStorageDefinitionInterface::hasCustomStorage

public FieldStorageDefinitionInterface::hasCustomStorage() Returns the storage behavior for this field. Indicates whether the entity type's storage should take care of storing the field values or whether it is handled separately; e.g. by the module providing the field. Return value bool FALSE if the storage takes care of storing the field, TRUE otherwise. File core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php, line 315 Class FieldStorageDefinitionInterface Defines an interfac

FieldStorageConfig::getLabel

public FieldStorageConfig::getLabel() Returns the human-readable label for the field. Return value string The field label. Overrides FieldStorageDefinitionInterface::getLabel File core/modules/field/src/Entity/FieldStorageConfig.php, line 615 Class FieldStorageConfig Defines the Field storage configuration entity. Namespace Drupal\field\Entity Code public function getLabel() { return $this->label(); }