ArgumentsResolver::getArguments

public ArgumentsResolver::getArguments(callable $callable) Gets arguments suitable for passing to the given callable. Return value array An array of arguments to pass to the callable. Throws \RuntimeException When a value for an argument given cannot be resolved. Overrides ArgumentsResolverInterface::getArguments File core/lib/Drupal/Component/Utility/ArgumentsResolver.php, line 51 Class ArgumentsResolver Resolves the arguments to pass to a callable. Namespace Drupal\Component\Utility

EntityDisplayBase::__construct

public EntityDisplayBase::__construct(array $values, $entity_type) Constructs an Entity object. Parameters array $values: An array of values to set, keyed by property name. If the entity type has bundles, the bundle key has to be specified. string $entity_type: The type of the entity to create. Overrides ConfigEntityBase::__construct File core/lib/Drupal/Core/Entity/EntityDisplayBase.php, line 120 Class EntityDisplayBase Provides a common base class for entity view and form displays. Na

CacheCollector::$lock

The lock backend that should be used. Type: \Drupal\Core\Lock\LockBackendInterface File core/lib/Drupal/Core/Cache/CacheCollector.php, line 52 Class CacheCollector Default implementation for CacheCollectorInterface. Namespace Drupal\Core\Cache Code protected $lock;

FieldUiRouteEnhancer::enhance

public FieldUiRouteEnhancer::enhance(array $defaults, Request $request) Update the defaults based on its own data and the request. Parameters array $defaults the getRouteDefaults array.: Request $request the Request instance.: Return value array the modified defaults. Each enhancer MUST return the $defaults but may add or remove values. Overrides RouteEnhancerInterface::enhance File core/modules/field_ui/src/Routing/FieldUiRouteEnhancer.php, line 35 Class FieldUiRouteEnhancer Enhances Fi

EntityRevisionConverter

Defines a class for making sure the edit-route loads the current draft. Hierarchy class \Drupal\Core\ParamConverter\EntityConverter implements ParamConverterInterfaceclass \Drupal\content_moderation\ParamConverter\EntityRevisionConverter File core/modules/content_moderation/src/ParamConverter/EntityRevisionConverter.php, line 15 Namespace Drupal\content_moderation\ParamConverter Members Name Modifiers Type Description EntityConverter::$entityManager protected property E

InstallStorage::CONFIG_INSTALL_DIRECTORY

Extension sub-directory containing default configuration for installation. File core/lib/Drupal/Core/Config/InstallStorage.php, line 24 Class InstallStorage Storage used by the Drupal installer. Namespace Drupal\Core\Config Code const CONFIG_INSTALL_DIRECTORY = 'config/install';

EntityType::$bundle_label

The human-readable name of the entity bundles, e.g. Vocabulary. Type: string|null File core/lib/Drupal/Core/Entity/EntityType.php, line 140 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code protected $bundle_label = NULL;

LanguageConfigCollectionNameTrait::getLangcodeFromCollectionName

protected LanguageConfigCollectionNameTrait::getLangcodeFromCollectionName($collection) Converts a configuration collection name to a language code. Parameters string $collection: The configuration collection name. Return value string The language code of the collection. Throws \InvalidArgumentException Exception thrown if the provided collection name is not in the format "language.LANGCODE". See also self::createConfigCollectionName() File core/modules/language/src/Config/LanguageConfigCol

MenuLinkDefault::getDescription

public MenuLinkDefault::getDescription() Returns the description of the menu link. Return value string The description of the menu link. Overrides MenuLinkInterface::getDescription File core/lib/Drupal/Core/Menu/MenuLinkDefault.php, line 71 Class MenuLinkDefault Provides a default implementation for menu link plugins. Namespace Drupal\Core\Menu Code public function getDescription() { return (string) $this->pluginDefinition['description']; }

RouteEnhancerInterface::applies

public RouteEnhancerInterface::applies(Route $route) Declares if the route enhancer applies to the given route. Parameters \Symfony\Component\Routing\Route $route: The route to consider attaching to. Return value bool TRUE if the check applies to the passed route, False otherwise. File core/lib/Drupal/Core/Routing/Enhancer/RouteEnhancerInterface.php, line 22 Class RouteEnhancerInterface A route enhance service to determine route enhance rules. Namespace Drupal\Core\Routing\Enhancer C