system_page_attachments

system_page_attachments(array &$page) Implements hook_page_attachments(). See also template_preprocess_maintenance_page() \Drupal\Core\EventSubscriber\ActiveLinkResponseFilter File core/modules/system/system.module, line 547 Configuration system that lets administrators modify the workings of the site. Code function system_page_attachments(array &$page) { // Ensure the same CSS is loaded in template_preprocess_maintenance_page(). $page['#attached']['library'][] = 'system/base';

BigPipe::START_SIGNAL

The BigPipe placeholder replacements start signal. File core/modules/big_pipe/src/Render/BigPipe.php, line 33 Class BigPipe The default BigPipe service. Namespace Drupal\big_pipe\Render Code const START_SIGNAL = '<script type="application/vnd.drupal-ajax" data-big-pipe-event="start"></script>';

AliasStorage::save

public AliasStorage::save($source, $alias, $langcode = LanguageInterface::LANGCODE_NOT_SPECIFIED, $pid = NULL) Saves a path alias to the database. @thrown \InvalidArgumentException Thrown when either the source or alias has not a starting slash. Parameters string $source: The internal system path. string $alias: The URL alias. string $langcode: (optional) The language code of the alias. int|null $pid: (optional) Unique path alias identifier. Return value array|false FALSE if the path could no

FieldConfig::linkTemplates

protected FieldConfig::linkTemplates() Gets an array link templates. Return value array An array of link templates containing paths. Overrides Entity::linkTemplates File core/modules/field/src/Entity/FieldConfig.php, line 247 Class FieldConfig Defines the Field entity. Namespace Drupal\field\Entity Code protected function linkTemplates() { $link_templates = parent::linkTemplates(); if (\Drupal::moduleHandler()->moduleExists('field_ui')) { $link_templates["{$this->entity_

BasicAuth::authenticate

public BasicAuth::authenticate(Request $request) Authenticates the user. Parameters \Symfony\Component\HttpFoundation\Request|null $request: The request object. Return value \Drupal\Core\Session\AccountInterface|null AccountInterface - in case of a successful authentication. NULL - in case where authentication failed. Overrides AuthenticationProviderInterface::authenticate File core/modules/basic_auth/src/Authentication/Provider/BasicAuth.php, line 79 Class BasicAuth HTTP Basic authentic

AuthenticationCollectorInterface::getProvider

public AuthenticationCollectorInterface::getProvider($provider_id) Returns an authentication provider. Parameters string $provider_id: The provider ID. Return value \Drupal\Core\Authentication\AuthenticationProviderInterface|null The authentication provider which matches the ID. File core/lib/Drupal/Core/Authentication/AuthenticationCollectorInterface.php, line 47 Class AuthenticationCollectorInterface Interface for collectors of registered authentication providers. Namespace Drupal\C

LocalStream

Defines a Drupal stream wrapper base class for local files. This class provides a complete stream wrapper implementation. URIs such as "public://example.txt" are expanded to a normal filesystem path such as "sites/default/files/example.txt" and then PHP filesystem functions are invoked. Drupal\Core\StreamWrapper\LocalStream implementations need to implement at least the getDirectoryPath() and getExternalUrl() methods. Hierarchy class \Drupal\Core\StreamWrapper\LocalStream implements StreamWrapp

DatabaseStorage::__construct

public DatabaseStorage::__construct(Connection $connection, $table, array $options = array(), $collection = StorageInterface::DEFAULT_COLLECTION) Constructs a new DatabaseStorage. Parameters \Drupal\Core\Database\Connection $connection: A Database connection to use for reading and writing configuration data. string $table: A database table name to store configuration data in. array $options: (optional) Any additional database connection options to use in queries. string $collection: (optional)

AccessResult::neutral

public static AccessResult::neutral() Creates an AccessResultInterface object with isNeutral() === TRUE. Return value \Drupal\Core\Access\AccessResult isNeutral() will be TRUE. File core/lib/Drupal/Core/Access/AccessResult.php, line 37 Class AccessResult Value object for passing an access result with cacheability metadata. Namespace Drupal\Core\Access Code public static function neutral() { return new AccessResultNeutral(); }

MenuInterface

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