Connection::getKey

public Connection::getKey() Returns the key this connection is associated with. Return value string|null The key of this connection, or NULL if no key is set. File core/lib/Drupal/Core/Database/Connection.php, line 437 Class Connection Base Database API class. Namespace Drupal\Core\Database Code public function getKey() { return $this->key; }

BlockContentListBuilder::getDefaultOperations

public BlockContentListBuilder::getDefaultOperations(EntityInterface $entity) Gets this list's default operations. Parameters \Drupal\Core\Entity\EntityInterface $entity: The entity the operations are for. Return value array The array structure is identical to the return value of self::getOperations(). Overrides EntityListBuilder::getDefaultOperations File core/modules/block_content/src/BlockContentListBuilder.php, line 34 Class BlockContentListBuilder Defines a class to build a listing

FormStateDecoratorBase::setRedirectUrl

public FormStateDecoratorBase::setRedirectUrl(Url $url) Sets the redirect URL for the form. Parameters \Drupal\Core\Url $url: The URL to redirect to. Return value $this Overrides FormStateInterface::setRedirectUrl See also \Drupal\Core\Form\FormSubmitterInterface::redirectForm() File core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 601 Class FormStateDecoratorBase Decorates another form state. Namespace Drupal\Core\Form Code public function setRedirectUrl(Url $url) { $th

CsrfRequestHeaderAccessCheck::applies

public CsrfRequestHeaderAccessCheck::applies(Route $route) Declares whether the access check applies to a specific route or not. Parameters \Symfony\Component\Routing\Route $route: The route to consider attaching to. Return value array An array of route requirement keys this access checker applies to. Overrides AccessCheckInterface::applies File core/lib/Drupal/Core/Access/CsrfRequestHeaderAccessCheck.php, line 50 Class CsrfRequestHeaderAccessCheck Access protection against CSRF attacks.

RdfMapping::calculateDependencies

public RdfMapping::calculateDependencies() Calculates dependencies and stores them in the dependency property. Return value $this Overrides ConfigEntityBase::calculateDependencies See also \Drupal\Core\Config\Entity\ConfigDependencyManager File core/modules/rdf/src/Entity/RdfMapping.php, line 137 Class RdfMapping Config entity for working with RDF mappings. Namespace Drupal\rdf\Entity Code public function calculateDependencies() { parent::calculateDependencies(); // Create depen

RouteProvider::$connection

The database connection from which to read route information. Type: \Drupal\Core\Database\Connection File core/lib/Drupal/Core/Routing/RouteProvider.php, line 29 Class RouteProvider A Route Provider front-end for all Drupal-stored routes. Namespace Drupal\Core\Routing Code protected $connection;

drupal_install_config_directories

drupal_install_config_directories() Creates the config directory and ensures it is operational. See also install_settings_form_submit() update_prepare_d8_bootstrap() File core/includes/install.inc, line 484 API functions for installing modules and themes. Code function drupal_install_config_directories() { global $config_directories; // Add a randomized config directory name to settings.php, unless it was // manually defined in the existing already. if (empty($config_directories[CON

ComplexDataDefinitionInterface::getPropertyDefinitions

public ComplexDataDefinitionInterface::getPropertyDefinitions() Gets an array of property definitions of contained properties. Return value \Drupal\Core\TypedData\DataDefinitionInterface[] An array of property definitions of contained properties, keyed by property name. File core/lib/Drupal/Core/TypedData/ComplexDataDefinitionInterface.php, line 32 Class ComplexDataDefinitionInterface Interface for complex data definitions. Namespace Drupal\Core\TypedData Code public function getPrope

CommentManagerInterface::COMMENT_MODE_FLAT

Comments are displayed in a flat list - expanded. File core/modules/comment/src/CommentManagerInterface.php, line 15 Class CommentManagerInterface Comment manager contains common functions to manage comment fields. Namespace Drupal\comment Code const COMMENT_MODE_FLAT = 0;

ViewExecutableFactory::$routeProvider

The route provider. Type: \Drupal\Core\Routing\RouteProviderInterface File core/modules/views/src/ViewExecutableFactory.php, line 40 Class ViewExecutableFactory Defines the cache backend factory. Namespace Drupal\views Code protected $routeProvider;