PhpTransliteration::readGenericData

protected PhpTransliteration::readGenericData($bank) Reads in generic transliteration data for a bank of characters. The data is read in from a file named "x$bank.php" (with $bank in hexadecimal notation) in PhpTransliteration::$dataDirectory. These files should set up a variable $bank containing an array whose numerical indices are the remaining two bytes of the character code, and whose values are the transliterations of these characters into US-ASCII. Note that the maximum Unicode character

ConfigEntityBase::$_core

Information maintained by Drupal core about configuration. Keys: default_config_hash: A hash calculated by the config.installer service and added during installation. Type: array File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 100 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code protected $_core = [];

ResponsiveImageStyleInterface::getImageStyleIds

public ResponsiveImageStyleInterface::getImageStyleIds() Gets all the image styles IDs involved in the responsive image mapping. Return value string[] File core/modules/responsive_image/src/ResponsiveImageStyleInterface.php, line 147 Class ResponsiveImageStyleInterface Provides an interface defining a responsive_image mapping entity. Namespace Drupal\responsive_image Code public function getImageStyleIds();

Entity::preSave

public Entity::preSave(EntityStorageInterface $storage) Acts on an entity before the presave hook is invoked. Used before the entity is saved and before invoking the presave hook. Note that in case of translatable content entities this callback is only fired on their current translation. It is up to the developer to iterate over all translations if needed. This is different from its counterpart in the Field API, FieldItemListInterface::preSave(), which is fired on all field translations automat

LanguageNegotiatorInterface::updateConfiguration

LanguageNegotiatorInterface::updateConfiguration(array $types) Updates the configuration based on the given language types. Stores the list of the language types along with information about their configurable state. Stores the default settings if the language type is not configurable. Parameters string[] $types: An array of configurable language types. File core/modules/language/src/LanguageNegotiatorInterface.php, line 207 Class LanguageNegotiatorInterface Common interface for language

KeyValueStoreInterface::deleteAll

public KeyValueStoreInterface::deleteAll() Deletes all items from the key/value store. File core/lib/Drupal/Core/KeyValueStore/KeyValueStoreInterface.php, line 123 Class KeyValueStoreInterface Defines the interface for key/value store implementations. Namespace Drupal\Core\KeyValueStore Code public function deleteAll();

TranslatableInterface::getUntranslated

public TranslatableInterface::getUntranslated() Returns the translatable object referring to the original language. Return value $this The translation object referring to the original language. File core/lib/Drupal/Core/TypedData/TranslatableInterface.php, line 71 Class TranslatableInterface Interface for translatable data. Namespace Drupal\Core\TypedData Code public function getUntranslated();

File::isPermanent

public File::isPermanent() Returns TRUE if the file is permanent. Return value bool TRUE if the file status is permanent. Overrides FileInterface::isPermanent File core/modules/file/src/Entity/File.php, line 145 Class File Defines the file entity class. Namespace Drupal\file\Entity Code public function isPermanent() { return $this->get('status')->value == FILE_STATUS_PERMANENT; }

VariantBase::id

public VariantBase::id() Returns the unique ID for the display variant. Return value string The display variant ID. Overrides VariantInterface::id File core/lib/Drupal/Core/Display/VariantBase.php, line 50 Class VariantBase Provides a base class for DisplayVariant plugins. Namespace Drupal\Core\Display Code public function id() { return $this->configuration['uuid']; }

MenuLinkContentDeleteForm::getDeletionMessage

protected MenuLinkContentDeleteForm::getDeletionMessage() Overrides ContentEntityDeleteForm::getDeletionMessage File core/modules/menu_link_content/src/Form/MenuLinkContentDeleteForm.php, line 33 Class MenuLinkContentDeleteForm Provides a delete form for content menu links. Namespace Drupal\menu_link_content\Form Code protected function getDeletionMessage() { return $this->t('The menu link %title has been deleted.', array('%title' => $this->entity->label())); }