Log::__construct

public Log::__construct($key = 'default') Constructor. Parameters $key: The database connection key for which to enable logging. File core/lib/Drupal/Core/Database/Log.php, line 47 Class Log Database query logger. Namespace Drupal\Core\Database Code public function __construct($key = 'default') { $this->connectionKey = $key; }

PageCache::$requestPolicy

A policy rule determining the cacheability of a request. Type: \Drupal\Core\PageCache\RequestPolicyInterface File core/modules/page_cache/src/StackMiddleware/PageCache.php, line 41 Class PageCache Executes the page caching before the main kernel takes over the request. Namespace Drupal\page_cache\StackMiddleware Code protected $requestPolicy;

ViewsStyle::$short_title

(optional) The short title used in the views UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsStyle.php, line 39 Class ViewsStyle Defines a Plugin annotation object for views style plugins. Namespace Drupal\views\Annotation Code public $short_title = '';

RouteProvider::$state

The state. Type: \Drupal\Core\State\StateInterface File core/lib/Drupal/Core/Routing/RouteProvider.php, line 43 Class RouteProvider A Route Provider front-end for all Drupal-stored routes. Namespace Drupal\Core\Routing Code protected $state;

hook_transliteration_overrides_alter

hook_transliteration_overrides_alter(&$overrides, $langcode) Provide language-specific overrides for transliteration. If the overrides you want to provide are standard for your language, consider providing a patch for the Drupal Core transliteration system instead of using this hook. This hook can be used temporarily until Drupal Core's transliteration tables are fixed, or for sites that want to use a non-standard transliteration system. Parameters array $overrides: Associative array of la

RouteBuilder::$routeCollection

The route collection during the rebuild. Type: \Symfony\Component\Routing\RouteCollection File core/lib/Drupal/Core/Routing/RouteBuilder.php, line 61 Class RouteBuilder Managing class for rebuilding the router table. Namespace Drupal\Core\Routing Code protected $routeCollection;

PhpStreamWrapperInterface::stream_metadata

public PhpStreamWrapperInterface::stream_metadata($path, $option, $value) Sets metadata on the stream. Parameters string $path: A string containing the URI to the file to set metadata on. int $option: One of: STREAM_META_TOUCH: The method was called in response to touch(). STREAM_META_OWNER_NAME: The method was called in response to chown() with string parameter. STREAM_META_OWNER: The method was called in response to chown(). STREAM_META_GROUP_NAME: The method was called in response to ch

FileSystemInterface::unlink

public FileSystemInterface::unlink($uri, $context = NULL) Deletes a file. PHP's unlink() is broken on Windows, as it can fail to remove a file when it has a read-only flag set. Parameters string $uri: A URI or pathname. resource $context: Refer to http://php.net/manual/ref.stream.php Return value bool Boolean TRUE on success, or FALSE on failure. See also unlink() Related topics PHP wrapper functions Functions that are wrappers or custom implementations of PHP functions. File core/lib/Drup

View::$display

Stores all display handlers of this view. An array containing Drupal\views\Plugin\views\display\DisplayPluginBase objects. Type: array File core/modules/views/src/Entity/View.php, line 94 Class View Defines a View configuration entity class. Namespace Drupal\views\Entity Code protected $display = array();

NullLockBackend::release

public NullLockBackend::release($name) Releases the given lock. Parameters string $name: Overrides LockBackendInterface::release File core/lib/Drupal/Core/Lock/NullLockBackend.php, line 44 Class NullLockBackend Defines a Null lock backend. Namespace Drupal\Core\Lock Code public function release($name) { }