EntityOperations::create

public static EntityOperations::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

ActiveTheme::getRegions

public ActiveTheme::getRegions() The regions used by the theme. Return value string[] The list of region machine names supported by the theme. See also system_region_list() File core/lib/Drupal/Core/Theme/ActiveTheme.php, line 205 Class ActiveTheme Defines a theme and its information needed at runtime. Namespace Drupal\Core\Theme Code public function getRegions() { return array_keys($this->regions); }

IMAGE_DERIVATIVE_TOKEN

The name of the query parameter for image derivative tokens. File core/modules/image/image.module, line 53 Exposes global functionality for creating image styles. Code define('IMAGE_DERIVATIVE_TOKEN', 'itok')

MessageInterface

Provides an interface defining a contact message entity. Hierarchy interface \Drupal\Core\Entity\FieldableEntityInterface; interface \Drupal\Core\Entity\RevisionableInterface; interface \Drupal\Core\TypedData\TranslatableInterfaceinterface \Drupal\Core\Entity\ContentEntityInterface extends \Traversableinterface \Drupal\contact\MessageInterface File core/modules/contact/src/MessageInterface.php, line 10 Namespace Drupal\contact Members Name Modifiers Type Description Accessib

Language::sort

public static Language::sort(&$languages) Sort language objects. Parameters \Drupal\Core\Language\LanguageInterface[] $languages: The array of language objects keyed by langcode. File core/lib/Drupal/Core/Language/Language.php, line 146 Class Language An object containing the information for an interface language. Namespace Drupal\Core\Language Code public static function sort(&$languages) { uasort($languages, function(LanguageInterface $a, LanguageInterface $b) { $a_wei

Update::execute

public Update::execute() Executes the UPDATE query. Return value The number of rows matched by the update query. This includes rows that actually didn't have to be updated because the values didn't change. Overrides Update::execute File core/lib/Drupal/Core/Database/Driver/pgsql/Update.php, line 14 Class Update PostgreSQL implementation of \Drupal\Core\Database\Query\Update. Namespace Drupal\Core\Database\Driver\pgsql Code public function execute() { $max_placeholder = 0; $blobs =

authorize-report.html.twig

Default theme implementation for authorize.php operation report templates. This report displays the results of an operation run via authorize.php. Available variables: messages: A list of result messages. attributes: HTML attributes for the element. See also template_preprocess_authorize_report() File core/modules/system/templates/authorize-report.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

PermissionsHashGenerator::$cache

The cache backend interface to use for the persistent cache. Type: \Drupal\Core\Cache\CacheBackendInterface File core/lib/Drupal/Core/Session/PermissionsHashGenerator.php, line 27 Class PermissionsHashGenerator Generates and caches the permissions hash for a user. Namespace Drupal\Core\Session Code protected $cache;

FilterFormatInterface

Provides an interface defining a filter format entity. Hierarchy interface \Drupal\Core\Entity\EntityInterface; interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterfaceinterface \Drupal\Core\Config\Entity\ConfigEntityInterfaceinterface \Drupal\filter\FilterFormatInterface File core/modules/filter/src/FilterFormatInterface.php, line 10 Namespace Drupal\filter Members Name Modifiers Type Description AccessibleInterface::access public function Checks data value ac

ConfigEntityBase::getThirdPartySetting

public ConfigEntityBase::getThirdPartySetting($module, $key, $default = NULL) Gets the value of a third-party setting. Parameters string $module: The module providing the third-party setting. string $key: The setting name. mixed $default: The default value Return value mixed The value. Overrides ThirdPartySettingsInterface::getThirdPartySetting File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 541 Class ConfigEntityBase Defines a base configuration entity class. Namesp