ConfigImporter::getEmptyExtensionsProcessedList

protected ConfigImporter::getEmptyExtensionsProcessedList() Gets an empty list of extensions to process. Return value array An empty list of extensions to process. File core/lib/Drupal/Core/Config/ConfigImporter.php, line 255 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected function getEmptyExtensionsProcessedList() { return array( 'module' => array( 'install' => array(), 'uninstall' => array(), ), 't

SelectInterface::getUnion

public &SelectInterface::getUnion() Returns a reference to the union queries for this query. This include queries for UNION, UNION ALL, and UNION DISTINCT. Because this method returns by reference, alter hooks may edit the tables array directly to make their changes. If just adding union queries, however, the use of the union() method is preferred. Note that this method must be called by reference as well: $fields =& $query->getUnion(); Return value A reference to the union query a

CurrentPathStack::$paths

Static cache of paths. Type: \SplObjectStorage File core/lib/Drupal/Core/Path/CurrentPathStack.php, line 20 Class CurrentPathStack Represents the current path for the current request. Namespace Drupal\Core\Path Code protected $paths;

NodeController::$dateFormatter

The date formatter service. Type: \Drupal\Core\Datetime\DateFormatterInterface File core/modules/node/src/Controller/NodeController.php, line 26 Class NodeController Returns responses for Node routes. Namespace Drupal\node\Controller Code protected $dateFormatter;

UpdateReady::$sitePath

The Site path. Type: string File core/modules/update/src/Form/UpdateReady.php, line 45 Class UpdateReady Configure update settings for this site. Namespace Drupal\update\Form Code protected $sitePath;

Cron::setCronLastTime

protected Cron::setCronLastTime() Records and logs the request time for this cron invocation. File core/lib/Drupal/Core/Cron.php, line 143 Class Cron The Drupal core Cron service. Namespace Drupal\Core Code protected function setCronLastTime() { // Record cron time. $this->state->set('system.cron_last', REQUEST_TIME); $this->logger->notice('Cron run completed.'); }

DbLogController::formatMessage

public DbLogController::formatMessage($row) Formats a database log message. Parameters object $row: The record from the watchdog table. The object properties are: wid, uid, severity, type, timestamp, message, variables, link, name. Return value string|\Drupal\Core\StringTranslation\TranslatableMarkup|false The formatted log message or FALSE if the message or variables properties are not set. File core/modules/dblog/src/Controller/DbLogController.php, line 344 Class DbLogController Return

ViewsDisplay::$title

The plugin 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/ViewsDisplay.php, line 30 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $title = '';

Cron::run

public Cron::run() Executes a cron run. Do not call this function from a test. Use $this->cronRun() instead. Return value bool TRUE upon success, FALSE otherwise. Overrides CronInterface::run File core/lib/Drupal/Core/Cron.php, line 102 Class Cron The Drupal core Cron service. Namespace Drupal\Core Code public function run() { // Allow execution to continue even if the request gets cancelled. @ignore_user_abort(TRUE); // Force the current user to anonymous to ensure consiste

Editor::$editor

The name (plugin ID) of the text editor. Type: string File core/modules/editor/src/Entity/Editor.php, line 45 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code protected $editor;