StreamWrapperManager::getNames

public StreamWrapperManager::getNames($filter = StreamWrapperInterface::ALL) Returns registered stream wrapper names. Parameters int $filter: (Optional) Filters out all types except those with an on bit for each on bit in $filter. For example, if $filter is StreamWrapperInterface::WRITE_VISIBLE, which is equal to (StreamWrapperInterface::READ | StreamWrapperInterface::WRITE | StreamWrapperInterface::VISIBLE), then only stream wrappers with all three of these bits set are returned. Defaults to

RouteProvider::getSubscribedEvents

static RouteProvider::getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. The array keys are event names and the value can be: The method name to call (priority defaults to 0) An array composed of the method name to call and the priority An array of arrays composed of the method names to call and respective priorities, or 0 if unset For instance: array('eventName' => 'methodName') array('eventName' => array('methodName', $priority)) array('eventN

AccessAwareRouter::$accessManager

The access manager. Type: \Drupal\Core\Access\AccessManagerInterface File core/lib/Drupal/Core/Routing/AccessAwareRouter.php, line 30 Class AccessAwareRouter A router class for Drupal with access check and upcasting. Namespace Drupal\Core\Routing Code protected $accessManager;

ShortcutSetStorage::countAssignedUsers

public ShortcutSetStorage::countAssignedUsers(ShortcutSetInterface $shortcut_set) Get the number of users who have this set assigned to them. Parameters \Drupal\shortcut\ShortcutSetInterface $shortcut_set: The shortcut to count the users assigned to. Return value int The number of users who have this set assigned to them. Overrides ShortcutSetStorageInterface::countAssignedUsers File core/modules/shortcut/src/ShortcutSetStorage.php, line 104 Class ShortcutSetStorage Defines a storage for

ShortcutInterface::getWeight

public ShortcutInterface::getWeight() Returns the weight among shortcuts with the same depth. Return value int The shortcut weight. File core/modules/shortcut/src/ShortcutInterface.php, line 37 Class ShortcutInterface Provides an interface defining a shortcut entity. Namespace Drupal\shortcut Code public function getWeight();

CheckProvider::loadDynamicRequirementMap

protected CheckProvider::loadDynamicRequirementMap() Compiles a mapping of requirement keys to access checker service IDs. File core/lib/Drupal/Core/Access/CheckProvider.php, line 148 Class CheckProvider Loads access checkers from the container. Namespace Drupal\Core\Access Code protected function loadDynamicRequirementMap() { if (isset($this->dynamicRequirementMap)) { return; } // Set them here, so we can use the isset() check above. $this->dynamicRequirementMap = a

ContainerInjectionInterface

Defines a common interface for dependency container injection. This interface gives classes who need services a factory method for instantiation rather than defining a new service. Hierarchy interface \Drupal\Core\DependencyInjection\ContainerInjectionInterface File core/lib/Drupal/Core/DependencyInjection/ContainerInjectionInterface.php, line 13 Namespace Drupal\Core\DependencyInjection Members Name Modifiers Type Description ContainerInjectionInterface::create public stati

CheckProviderInterface::setChecks

public CheckProviderInterface::setChecks(RouteCollection $routes) For each route, saves a list of applicable access checks to the route. Parameters \Symfony\Component\Routing\RouteCollection $routes: A collection of routes to apply checks to. File core/lib/Drupal/Core/Access/CheckProviderInterface.php, line 25 Class CheckProviderInterface Provides the available access checkers by service IDs. Namespace Drupal\Core\Access Code public function setChecks(RouteCollection $routes);

RouteProviderLazyBuilder::__construct

public RouteProviderLazyBuilder::__construct(RouteProviderInterface $route_provider, RouteBuilderInterface $route_builder) RouteProviderLazyBuilder constructor. Parameters \Drupal\Core\Routing\RouteProviderInterface $route_provider: The route provider service. \Drupal\Core\Routing\RouteBuilderInterface $route_builder: The route building service. File core/lib/Drupal/Core/Routing/RouteProviderLazyBuilder.php, line 42 Class RouteProviderLazyBuilder A Route Provider front-end for all Drupal-

DataReferenceDefinitionInterface

Interface for typed data references. Hierarchy interface \Drupal\Core\TypedData\DataDefinitionInterfaceinterface \Drupal\Core\TypedData\DataReferenceDefinitionInterface See also \Drupal\Core\TypedData\DataReferenceDefinition \Drupal\Core\TypedData\DataReferenceInterface Related topics Typed Data API API for describing data based on a set of available data types. File core/lib/Drupal/Core/TypedData/DataReferenceDefinitionInterface.php, line 13 Namespace Drupal\Core\TypedData Members