ConfigImporter::$processedExtensions

List of extension changes processed by the import(). Type: array File core/lib/Drupal/Core/Config/ConfigImporter.php, line 92 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $processedExtensions;

BlockAccessControlHandler::$contextRepository

The context manager service. Type: \Drupal\Core\Plugin\Context\ContextRepositoryInterface File core/modules/block/src/BlockAccessControlHandler.php, line 49 Class BlockAccessControlHandler Defines the access control handler for the block entity type. Namespace Drupal\block Code protected $contextRepository;

LogMessageParserInterface::parseMessagePlaceholders

public LogMessageParserInterface::parseMessagePlaceholders(&$message, array &$context) Parses and transforms message and its placeholders to a common format. For a value to be considered as a placeholder should be in the following formats: PSR3 format: Drupal specific string placeholder format: Values in PSR3 format will be transformed to SafeMarkup::format() format. Parameters string $message: The message that contains the placeholders. If the message is in PSR3 style, it will be t

Condition::compile

public Condition::compile($conditionContainer) Compiles this conditional clause. Parameters $query: The query object this conditional clause belongs to. Overrides ConditionInterface::compile File core/lib/Drupal/Core/Entity/Query/Sql/Condition.php, line 25 Class Condition Implements entity query conditions for SQL databases. Namespace Drupal\Core\Entity\Query\Sql Code public function compile($conditionContainer) { // If this is not the top level condition group then the sql query i

RoleInterface::setWeight

public RoleInterface::setWeight($weight) Sets the weight to the given value. Parameters int $weight: The desired weight. Return value $this File core/modules/user/src/RoleInterface.php, line 98 Class RoleInterface Provides an interface defining a user role entity. Namespace Drupal\user Code public function setWeight($weight);

ViewsData::getData

protected ViewsData::getData() Gets all data invoked by hook_views_data(). This is requested from the cache before being rebuilt. Return value array An array of all data. File core/modules/views/src/ViewsData.php, line 235 Class ViewsData Class to manage and lazy load cached views data. Namespace Drupal\views Code protected function getData() { $this->fullyLoaded = TRUE; if ($data = $this->cacheGet($this->baseCid)) { return $data->data; } else { $modules =

BlockAccessControlHandler::__construct

public BlockAccessControlHandler::__construct(EntityTypeInterface $entity_type, ExecutableManagerInterface $manager, ContextHandlerInterface $context_handler, ContextRepositoryInterface $context_repository) Constructs the block access control handler instance Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition. \Drupal\Core\Executable\ExecutableManagerInterface $manager: The ConditionManager for checking visibility of blocks. \Drupal\Core\Plugin\Context\

AjaxResponseAttachmentsProcessor::$jsCollectionRenderer

The JS asset collection renderer service. Type: \Drupal\Core\Asset\AssetCollectionRendererInterface File core/lib/Drupal/Core/Ajax/AjaxResponseAttachmentsProcessor.php, line 50 Class AjaxResponseAttachmentsProcessor Processes attachments of AJAX responses. Namespace Drupal\Core\Ajax Code protected $jsCollectionRenderer;

AjaxResponseAttachmentsProcessor::$moduleHandler

The module handler. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/lib/Drupal/Core/Ajax/AjaxResponseAttachmentsProcessor.php, line 71 Class AjaxResponseAttachmentsProcessor Processes attachments of AJAX responses. Namespace Drupal\Core\Ajax Code protected $moduleHandler;

Container::has

public Container::has($id) File core/lib/Drupal/Component/DependencyInjection/Container.php, line 375 Class Container Provides a container optimized for Drupal's needs. Namespace Drupal\Component\DependencyInjection Code public function has($id) { return isset($this->aliases[$id]) || isset($this->services[$id]) || isset($this->serviceDefinitions[$id]); }