UpdateRegistry::registerInvokedUpdates

public UpdateRegistry::registerInvokedUpdates(array $function_names) Registers that update fucntions got executed. Parameters string[] $function_names: The executed update functions. Return value $this File core/lib/Drupal/Core/Update/UpdateRegistry.php, line 207 Class UpdateRegistry Provides all and missing update implementations. Namespace Drupal\Core\Update Code public function registerInvokedUpdates(array $function_names) { $executed_updates = $this->keyValue->get('existi

FormStateInterface::setSubmitHandlers

public FormStateInterface::setSubmitHandlers(array $submit_handlers) Sets the submit handlers. Parameters array $submit_handlers: An array of submit handlers. Return value $this File core/lib/Drupal/Core/Form/FormStateInterface.php, line 929 Class FormStateInterface Provides an interface for an object containing the current state of a form. Namespace Drupal\Core\Form Code public function setSubmitHandlers(array $submit_handlers);

image_field_storage_config_update

image_field_storage_config_update(FieldStorageConfigInterface $field_storage) Implements hook_ENTITY_TYPE_update() for 'field_storage_config'. File core/modules/image/image.module, line 377 Exposes global functionality for creating image styles. Code function image_field_storage_config_update(FieldStorageConfigInterface $field_storage) { if ($field_storage->getType() != 'image') { // Only act on image fields. return; } $prior_field_storage = $field_storage->original; /

BlockContentForm::create

public static BlockContentForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The service

template_preprocess_region

template_preprocess_region(&$variables) Prepares variables for region templates. Default template: region.html.twig. Prepares the values passed to the theme_region function to be passed into a pluggable template engine. Uses the region name to generate a template file suggestions. Parameters array $variables: An associative array containing: elements: An associative array containing properties of the region. File core/includes/theme.inc, line 1509 The theme system, which controls the ou

QueryBase::$entityType

Information about the entity type. Type: \Drupal\Core\Entity\EntityTypeInterface File core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 25 Class QueryBase The base entity query class. Namespace Drupal\Core\Entity\Query Code protected $entityType;

FormState::hasFileElement

public FormState::hasFileElement() Returns whether this form has a file element. Return value bool Whether this form has a file element. Overrides FormStateInterface::hasFileElement File core/lib/Drupal/Core/Form/FormState.php, line 567 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code public function hasFileElement() { return $this->has_file_element; }

DrupalKernel::$booted

Whether the kernel has been booted. Type: bool File core/lib/Drupal/Core/DrupalKernel.php, line 118 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected $booted = FALSE;

FieldFilteredMarkup::allowedTags

public static FieldFilteredMarkup::allowedTags() Returns the allowed tag list. Return value string[] A list of allowed tags. File core/lib/Drupal/Core/Field/FieldFilteredMarkup.php, line 58 Class FieldFilteredMarkup Defines an object that passes safe strings through the Field system. Namespace Drupal\Core\Field Code public static function allowedTags() { return ['a', 'b', 'big', 'code', 'del', 'em', 'i', 'ins', 'pre', 'q', 'small', 'span', 'strong', 'sub', 'sup', 'tt', 'ol', 'ul', '

LocaleConfigManager::isUpdatingTranslationsFromLocale

public LocaleConfigManager::isUpdatingTranslationsFromLocale() Indicates whether configuration translations are being updated from locale. Return value bool Whether or not configuration translations are currently being updated. If TRUE, LocaleConfigManager is in control of the process and the reference data is locale's storage. Changes made to active configuration and overrides in this case should not feed back to locale storage. On the other hand, when not updating from locale and configurati