ExecutionContext::$violations

The violations generated in the current context. Type: \Symfony\Component\Validator\ConstraintViolationList File core/lib/Drupal/Core/TypedData/Validation/ExecutionContext.php, line 50 Class ExecutionContext Defines an execution context class. Namespace Drupal\Core\TypedData\Validation Code protected $violations;

LanguageConfigFactoryOverride::getStorage

public LanguageConfigFactoryOverride::getStorage($langcode) Returns the storage instance for a particular langcode. Parameters string $langcode: Language code. Return value \Drupal\Core\Config\StorageInterface The storage instance for a particular langcode. Overrides LanguageConfigFactoryOverrideInterface::getStorage File core/modules/language/src/Config/LanguageConfigFactoryOverride.php, line 112 Class LanguageConfigFactoryOverride Provides language overrides for the configuration facto

CurrentRouteMatch::__construct

public CurrentRouteMatch::__construct(RequestStack $request_stack) Constructs a CurrentRouteMatch object. Parameters \Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack. File core/lib/Drupal/Core/Routing/CurrentRouteMatch.php, line 33 Class CurrentRouteMatch Default object for current_route_match service. Namespace Drupal\Core\Routing Code public function __construct(RequestStack $request_stack) { $this->requestStack = $request_stack; $this->rout

ThemeAccessCheck::__construct

public ThemeAccessCheck::__construct(ThemeHandlerInterface $theme_handler) Constructs a \Drupal\Core\Theme\Registry object. Parameters \Drupal\Core\Extension\ThemeHandlerInterface $theme_handler: The theme handler. File core/lib/Drupal/Core/Theme/ThemeAccessCheck.php, line 27 Class ThemeAccessCheck Provides access checking for themes for routing and theme negotiation. Namespace Drupal\Core\Theme Code public function __construct(ThemeHandlerInterface $theme_handler) { $this->theme

EntityTypeInfo::filterNonRevisionableEntityTypes

protected EntityTypeInfo::filterNonRevisionableEntityTypes(array $entity_types) Filters entity type lists to return only revisionable entity types. Parameters EntityTypeInterface[] $entity_types: The master entity type list filter. Return value \Drupal\Core\Config\Entity\ConfigEntityTypeInterface[] An array of revisionable entity types which are configuration entities. File core/modules/content_moderation/src/EntityTypeInfo.php, line 399 Class EntityTypeInfo Manipulates entity type infor

CalculatedCacheContextInterface

Provides an interface for defining a calculated cache context service. Hierarchy interface \Drupal\Core\Cache\Context\CalculatedCacheContextInterface File core/lib/Drupal/Core/Cache/Context/CalculatedCacheContextInterface.php, line 8 Namespace Drupal\Core\Cache\Context Members Name Modifiers Type Description CalculatedCacheContextInterface::getCacheableMetadata public function Gets the cacheability metadata for the context based on the parameter value. CalculatedCacheC

BreakpointManager::getGroups

public BreakpointManager::getGroups() Gets all the existing breakpoint groups. Return value array Array of breakpoint group labels. Keyed by group name. Overrides BreakpointManagerInterface::getGroups File core/modules/breakpoint/src/BreakpointManager.php, line 181 Class BreakpointManager Defines a breakpoint plugin manager to deal with breakpoints. Namespace Drupal\breakpoint Code public function getGroups() { // Use a double colon so as to not clash with the cache for each group.

PhpStreamWrapperInterface::dir_closedir

public PhpStreamWrapperInterface::dir_closedir() Return value bool File core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php, line 15 Class PhpStreamWrapperInterface Defines a generic PHP stream wrapper interface. Namespace Drupal\Core\StreamWrapper Code public function dir_closedir();

Select::addJoin

public Select::addJoin($type, $table, $alias = NULL, $condition = NULL, $arguments = array()) Join against another table in the database. This method does the "hard" work of queuing up a table to be joined against. In some cases, that may include dipping into the Schema API to find the necessary fields on which to join. Parameters $type: The type of join. Typically one one of INNER, LEFT OUTER, and RIGHT OUTER. $table: The table against which to join. May be a string or another SelectQuery obj

ContactController::__construct

public ContactController::__construct(RendererInterface $renderer) Constructs a ContactController object. Parameters \Drupal\Core\Render\RendererInterface $renderer: The renderer. File core/modules/contact/src/Controller/ContactController.php, line 30 Class ContactController Controller routines for contact routes. Namespace Drupal\contact\Controller Code public function __construct(RendererInterface $renderer) { $this->renderer = $renderer; }