StackedSessionHandlerPass::process

public StackedSessionHandlerPass::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/StackedSessionHandlerPass.php, line 17 Class StackedSessionHandlerPass Provides a compiler pass for stacked session save handlers. Namespace Drupal\Core\DependencyInjection\Compiler Code public function process(Cont

SharedTempStore::setIfOwner

public SharedTempStore::setIfOwner($key, $value) Stores a particular key/value pair in this SharedTempStore. Only stores the given key/value pair if it does not exist yet or is owned by $this->owner. Parameters string $key: The key of the data to store. mixed $value: The data to store. Return value bool TRUE if the data was set, or FALSE if it already exists and is not owned by $this->user. File core/modules/user/src/SharedTempStore.php, line 168 Class SharedTempStore Stores and re

ItemInterface::setGuid

public ItemInterface::setGuid($guid) Sets the unique identifier for the feed item. Parameters string $guid: The unique identifier for the feed item. Return value \Drupal\aggregator\ItemInterface The called feed item entity. File core/modules/aggregator/src/ItemInterface.php, line 143 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function setGuid($guid);

ContentTranslationManageAccessCheck::$entityManager

The entity type manager. Type: \Drupal\Core\Entity\EntityManagerInterface File core/modules/content_translation/src/Access/ContentTranslationManageAccessCheck.php, line 24 Class ContentTranslationManageAccessCheck Access check for entity translation CRUD operation. Namespace Drupal\content_translation\Access Code protected $entityManager;

ContentLanguageSettings::setTargetBundle

public ContentLanguageSettings::setTargetBundle($target_bundle) Sets the bundle this config applies to. Parameters string $target_bundle: The bundle. Return value $this Overrides ContentLanguageSettingsInterface::setTargetBundle File core/modules/language/src/Entity/ContentLanguageSettings.php, line 112 Class ContentLanguageSettings Defines the ContentLanguageSettings entity. Namespace Drupal\language\Entity Code public function setTargetBundle($target_bundle) { $this->target_bu

ConfigEntityType::$lookup_keys

Keys that are stored key value store for fast lookup. Type: array File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 31 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace Drupal\Core\Config\Entity Code protected $lookup_keys = [];

InsertTrait::values

public InsertTrait::values(array $values) Adds another set of values to the query to be inserted. If $values is a numeric-keyed array, it will be assumed to be in the same order as the original fields() call. If it is associative, it may be in any order as long as the keys of the array match the names of the fields. Parameters array $values: An array of values to add to the query. Return value $this The called object. File core/lib/Drupal/Core/Database/Query/InsertTrait.php, line 101 Class

Theme

Defines a class for updating themes using Drupal\Core\FileTransfer\FileTransfer classes via authorize.php. Hierarchy class \Drupal\Core\Updater\Updaterclass \Drupal\Core\Updater\Theme implements UpdaterInterface File core/lib/Drupal/Core/Updater/Theme.php, line 11 Namespace Drupal\Core\Updater Members Name Modifiers Type Description Theme::canUpdate public static function Determines whether this class can update the specified project. Theme::canUpdateDirectory stati

EntityDisplayFormBase::multistepSubmit

public EntityDisplayFormBase::multistepSubmit($form, FormStateInterface $form_state) Form submission handler for multistep buttons. File core/modules/field_ui/src/Form/EntityDisplayFormBase.php, line 594 Class EntityDisplayFormBase Base class for EntityDisplay edit forms. Namespace Drupal\field_ui\Form Code public function multistepSubmit($form, FormStateInterface $form_state) { $trigger = $form_state->getTriggeringElement(); $op = $trigger['#op']; switch ($op) { case 'ed

ThemeHandler::doGetBaseThemes

protected ThemeHandler::doGetBaseThemes(array $themes, $theme, $used_themes = array()) Finds the base themes for the specific theme. Parameters array $themes: An array of available themes. string $theme: The name of the theme whose base we are looking for. array $used_themes: (optional) A recursion parameter preventing endless loops. Defaults to an empty array. Return value array An array of base themes. File core/lib/Drupal/Core/Extension/ThemeHandler.php, line 385 Class ThemeHandler De