RouteProviderLazyBuilder::preLoadRoutes

public RouteProviderLazyBuilder::preLoadRoutes($names) Pre-load routes by their names using the provided list of names. This method exists in order to allow performance optimizations. It allows pre-loading serialized routes that may latter be retrieved using ::getRoutesByName() Parameters string[] $names: Array of route names to load. Overrides PreloadableRouteProviderInterface::preLoadRoutes File core/lib/Drupal/Core/Routing/RouteProviderLazyBuilder.php, line 78 Class RouteProviderLazyBui

CommentLazyBuilders::$renderer

The renderer service. Type: \Drupal\Core\Render\RendererInterface File core/modules/comment/src/CommentLazyBuilders.php, line 59 Class CommentLazyBuilders Defines a service for comment #lazy_builder callbacks. Namespace Drupal\comment Code protected $renderer;

Filter::$description

Additional administrative information about the filter's behavior. Type: \Drupal\Core\Annotation\Translation (optional) Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/filter/src/Annotation/Filter.php, line 55 Class Filter Defines an filter annotation object. Namespace Drupal\filter\Annotation Code public $description = '';

Filter::$settings

The default settings for the filter. Type: array (optional) File core/modules/filter/src/Annotation/Filter.php, line 76 Class Filter Defines an filter annotation object. Namespace Drupal\filter\Annotation Code public $settings = array();

RouteProcessorManager::getOutbound

protected RouteProcessorManager::getOutbound() Returns the sorted array of outbound processors. Return value array An array of processor objects. File core/lib/Drupal/Core/RouteProcessor/RouteProcessorManager.php, line 62 Class RouteProcessorManager Route processor manager. Namespace Drupal\Core\RouteProcessor Code protected function getOutbound() { if (empty($this->sortedOutbound)) { $this->sortedOutbound = $this->sortProcessors(); } return $this->sortedOutboun

InPlaceEditor::$module

The name of the module providing the in-place editor plugin. Type: string File core/modules/quickedit/src/Annotation/InPlaceEditor.php, line 35 Class InPlaceEditor Defines an InPlaceEditor annotation object. Namespace Drupal\quickedit\Annotation Code public $module;

SelectExtender::getTables

public &SelectExtender::getTables() Returns a reference to the tables array for this query. Because this method returns by reference, alter hooks may edit the tables array directly to make their changes. If just adding tables, however, the use of the join() methods is preferred. Note that this method must be called by reference as well: $fields =& $query->getTables(); Return value A reference to the tables array structure. Overrides SelectInterface::getTables File core/lib/Drupal/C

YamlSymfony::decode

public static YamlSymfony::decode($raw) Decodes data from the serialization format. Parameters string $raw: The raw data string to decode. Return value mixed The decoded data. Overrides SerializationInterface::decode File core/lib/Drupal/Component/Serialization/YamlSymfony.php, line 31 Class YamlSymfony Default serialization for YAML using the Symfony component. Namespace Drupal\Component\Serialization Code public static function decode($raw) { try { $yaml = new Parser(); /

EntityTypeInfo

Manipulates entity type information. This class contains primarily bridged hooks for compile-time or cache-clear-time hooks. Runtime hooks should be placed in EntityOperations. Hierarchy class \Drupal\content_moderation\EntityTypeInfo implements ContainerInjectionInterface uses StringTranslationTrait File core/modules/content_moderation/src/EntityTypeInfo.php, line 34 Namespace Drupal\content_moderation Members Name Modifiers Type Description EntityTypeInfo::$currentUser pro

FormBuilder::doBuildForm

public FormBuilder::doBuildForm($form_id, &$element, FormStateInterface &$form_state) Builds and processes all elements in the structured form array. Adds any required properties to each element, maps the incoming input data to the proper elements, and executes any #process handlers attached to a specific element. This is one of the three primary functions that recursively iterates a form array. This one does it for completing the form building process. The other two are self::doValidat