CachedStorage::decode

public CachedStorage::decode($raw) Decodes configuration data from the storage-specific format. This is a publicly accessible static method to allow for alternative usages in data conversion scripts and also tests. Parameters string $raw: The raw configuration data string to decode. Return value array The decoded configuration data as an associative array. Overrides StorageInterface::decode File core/lib/Drupal/Core/Config/CachedStorage.php, line 173 Class CachedStorage Defines the cache

RegisterEventSubscribersPass::process

public RegisterEventSubscribersPass::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/RegisterEventSubscribersPass.php, line 16 Class RegisterEventSubscribersPass Registers all event subscribers to the event dispatcher. Namespace Drupal\Core\DependencyInjection\Compiler Code public function proces

ConfigImporter::createExtensionChangelist

protected ConfigImporter::createExtensionChangelist() Populates the extension change list. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 357 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function createExtensionChangelist() { // Create an empty changelist. $this->extensionChangelist = $this->getEmptyExtensionsProcessedList(); // Read the extensions information to determine changes. $current_extensions = $th

BackendChain::deleteMultiple

public BackendChain::deleteMultiple(array $cids) Deletes multiple items from the cache. If the cache items are being deleted because they are no longer "fresh", you may consider using invalidateMultiple() instead. This allows callers to retrieve the invalid items by calling get() with $allow_invalid set to TRUE. In some cases an invalid item may be acceptable rather than having to rebuild the cache. Parameters array $cids: An array of cache IDs to delete. Overrides CacheBackendInterface::delet

BreakLockForm::buildForm

public BreakLockForm::buildForm(array $form, FormStateInterface $form_state) Form constructor. 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 array The form structure. Overrides EntityConfirmFormBase::buildForm File core/modules/views_ui/src/Form/BreakLockForm.php, line 97 Class BreakLockForm Builds the form to break the lock of an edited view. Namespace Dr

FilterFormatInterface::getPermissionName

public FilterFormatInterface::getPermissionName() Returns the machine-readable permission name for the text format. Return value string|bool The machine-readable permission name, or FALSE if the text format is malformed or is the fallback format (which is available to all users). File core/modules/filter/src/FilterFormatInterface.php, line 54 Class FilterFormatInterface Provides an interface defining a filter format entity. Namespace Drupal\filter Code public function getPermissionNam

DefaultTableMapping::getFieldColumnName

public DefaultTableMapping::getFieldColumnName(FieldStorageDefinitionInterface $storage_definition, $property_name) Generates a column name for a field property. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field storage definition. string $property_name: The name of the property. Return value string A string containing a generated column name for a field data table that is unique among all other fields. Overrides TableMappingInterface::getFieldColumn

ConfigBase::validateName

public static ConfigBase::validateName($name) Validates the configuration object name. Parameters string $name: The name of the configuration object. Throws \Drupal\Core\Config\ConfigNameException See also Config::MAX_NAME_LENGTH File core/lib/Drupal/Core/Config/ConfigBase.php, line 94 Class ConfigBase Provides a base class for configuration objects with get/set support. Namespace Drupal\Core\Config Code public static function validateName($name) { // The name must be namespaced b

FieldStorageConfigInterface::getType

public FieldStorageConfigInterface::getType() Returns the field type. Return value string The field type, i.e. the id of a field type plugin. For example 'text'. Overrides FieldStorageDefinitionInterface::getType File core/modules/field/src/FieldStorageConfigInterface.php, line 19 Class FieldStorageConfigInterface Provides an interface defining a field storage entity. Namespace Drupal\field Code public function getType();

BookRemoveForm::getFormId

public BookRemoveForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/modules/book/src/Form/BookRemoveForm.php, line 52 Class BookRemoveForm Remove form for book module. Namespace Drupal\book\Form Code public function getFormId() { return 'book_remove_form'; }