RouteProvider::$pathProcessor

A path processor manager for resolving the system path. Type: \Drupal\Core\PathProcessor\InboundPathProcessorInterface File core/lib/Drupal/Core/Routing/RouteProvider.php, line 85 Class RouteProvider A Route Provider front-end for all Drupal-stored routes. Namespace Drupal\Core\Routing Code protected $pathProcessor;

RowCountException::__construct

public RowCountException::__construct($message = NULL, $code = 0, \Exception $previous = NULL) File core/lib/Drupal/Core/Database/RowCountException.php, line 10 Class RowCountException Exception thrown if a SELECT query trying to execute rowCount() on result. Namespace Drupal\Core\Database Code public function __construct($message = NULL, $code = 0, \Exception $previous = NULL) { if (!isset($message)) { $message = "rowCount() is supported for DELETE, INSERT, or UPDATE statements

language-negotiation-configure-form.html.twig

Default theme implementation for a language negotiation configuration form. Available variables: language_types: A list of language negotiation types. Each language type contains the following: type: The machine name for the negotiation type. title: The language negotiation type name. description: A description for how the language negotiation type operates. configurable: A radio element to toggle the table. table: A draggable table for the language detection methods of this type. childr

BookManagerInterface::getBookParents

public BookManagerInterface::getBookParents(array $item, array $parent = array()) File core/modules/book/src/BookManagerInterface.php, line 210 Class BookManagerInterface Provides an interface defining a book manager. Namespace Drupal\book Code public function getBookParents(array $item, array $parent = array());

Tasks::checkBinaryOutput

Tasks::checkBinaryOutput() Check Binary Output. Unserializing does not work on Postgresql 9 when bytea_output is 'hex'. File core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php, line 136 Class Tasks Specifies installation tasks for PostgreSQL databases. Namespace Drupal\Core\Database\Driver\pgsql\Install Code function checkBinaryOutput() { // PostgreSQL < 9 doesn't support bytea_output, so verify we are running // at least PostgreSQL 9. $database_connection = Database

Email::preRenderEmail

public static Email::preRenderEmail($element) Prepares a #type 'email' render element for input.html.twig. Parameters array $element: An associative array containing the properties of the element. Properties used: #title, #value, #description, #size, #maxlength, #placeholder, #required, #attributes. Return value array The $element with prepared variables ready for input.html.twig. File core/lib/Drupal/Core/Render/Element/Email.php, line 91 Class Email Provides a form input element for en

QueryFactory::getAggregate

public QueryFactory::getAggregate($entity_type_id, $conjunction = 'AND') Returns an aggregated query object for a given entity type. Parameters string $entity_type_id: The entity type ID. string $conjunction: AND: all of the conditions on the query need to match. OR: at least one of the conditions on the query need to match. Return value \Drupal\Core\Entity\Query\QueryAggregateInterface The aggregated query object that can query the given entity type. File core/lib/Drupal/Core/Entity/Quer

dblog_cron

dblog_cron() Implements hook_cron(). Controls the size of the log table, paring it to 'dblog_row_limit' messages. File core/modules/dblog/dblog.module, line 60 System monitoring and logging for administrators. Code function dblog_cron() { // Cleanup the watchdog table. $row_limit = \Drupal::config('dblog.settings')->get('row_limit'); // For row limit n, get the wid of the nth row in descending wid order. // Counting the most recent n rows avoids issues with wid number sequences,

LOCALE_TRANSLATION_STATUS_TTL

The number of seconds that the translations status entry should be considered. File core/modules/locale/locale.module, line 107 Enables the translation of the user interface to languages other than English. Code const LOCALE_TRANSLATION_STATUS_TTL = 600;

ConfigurableLanguage::$locked

Locked languages cannot be edited. Type: bool File core/modules/language/src/Entity/ConfigurableLanguage.php, line 77 Class ConfigurableLanguage Defines the ConfigurableLanguage entity. Namespace Drupal\language\Entity Code protected $locked = FALSE;