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; }

ViewsArgumentValidator::$no_ui

Whether the plugin should be not selectable in the UI. If it's set to TRUE, you can still use it via the API in config files. Type: bool File core/modules/views/src/Annotation/ViewsArgumentValidator.php, line 48 Class ViewsArgumentValidator Defines a Plugin annotation object for views argument validator plugins. Namespace Drupal\views\Annotation Code public $no_ui;

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;

CacheContextsManager::convertTokensToKeys

public CacheContextsManager::convertTokensToKeys(array $context_tokens) Converts cache context tokens to cache keys. A cache context token is either: a cache context ID (if the service ID is 'cache_context.foo', then 'foo' is a cache context ID); for example, 'foo'. a calculated cache context ID, followed by a colon, followed by the parameter for the calculated cache context; for example, 'bar:some_parameter'. Parameters string[] $context_tokens: An array of cache context tokens. Return valu

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

views_ui_view_preview_section_rows_links

views_ui_view_preview_section_rows_links(ViewExecutable $view) Returns all contextual links for the main content part of the view. File core/modules/views_ui/views_ui.module, line 202 Provide structure for the administrative interface to Views. Code function views_ui_view_preview_section_rows_links(ViewExecutable $view) { $links = array(); $links = array_merge($links, views_ui_view_preview_section_handler_links($view, 'filter', TRUE)); $links = array_merge($links, views_ui_view_preview_

MarkupTrait::create

public static MarkupTrait::create($string) Creates a Markup object if necessary. If $string is equal to a blank string then it is not necessary to create a Markup object. If $string is an object that implements MarkupInterface it is returned unchanged. Parameters mixed $string: The string to mark as safe. This value will be cast to a string. Return value string|\Drupal\Component\Render\MarkupInterface A safe string. File core/lib/Drupal/Component/Render/MarkupTrait.php, line 34 Class Mark