StorableConfigBase::getStorage

public StorableConfigBase::getStorage() Retrieves the storage used to load and save this configuration object. Return value \Drupal\Core\Config\StorageInterface The configuration storage object. File core/lib/Drupal/Core/Config/StorableConfigBase.php, line 117 Class StorableConfigBase Provides a base class for configuration objects with storage support. Namespace Drupal\Core\Config Code public function getStorage() { return $this->storage; }

FormStateInterface::setResponse

public FormStateInterface::setResponse(Response $response) Sets a response for this form. If a response is set, it will be used during processing and returned directly. The form will not be rebuilt or redirected. Parameters \Symfony\Component\HttpFoundation\Response $response: The response to return. Return value $this File core/lib/Drupal/Core/Form/FormStateInterface.php, line 104 Class FormStateInterface Provides an interface for an object containing the current state of a form. Name

TranslateFormBase::$state

The state store. Type: \Drupal\Core\State\StateInterface File core/modules/locale/src/Form/TranslateFormBase.php, line 30 Class TranslateFormBase Defines the locale user interface translation form base. Namespace Drupal\locale\Form Code protected $state;

BreakpointManager::getBreakpointsByGroup

public BreakpointManager::getBreakpointsByGroup($group) Gets breakpoints for the specified group. Parameters string $group: The breakpoint group to retrieve. Return value \Drupal\breakpoint\BreakpointInterface[] Array of breakpoint plugins keyed by machine name. Overrides BreakpointManagerInterface::getBreakpointsByGroup File core/modules/breakpoint/src/BreakpointManager.php, line 150 Class BreakpointManager Defines a breakpoint plugin manager to deal with breakpoints. Namespace Drupa

BaseFieldDefinition::$schema

The field schema. Type: array File core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 40 Class BaseFieldDefinition A class for defining entity fields. Namespace Drupal\Core\Field Code protected $schema;

FieldStorageConfigStorage::$moduleHandler

The module handler. Type: \Drupal\Core\Extension\ModuleHandlerInterface Overrides EntityHandlerBase::$moduleHandler File core/modules/field/src/FieldStorageConfigStorage.php, line 27 Class FieldStorageConfigStorage Controller class for "field storage" configuration entities. Namespace Drupal\field Code protected $moduleHandler;

file-widget-multiple.html.twig

Default theme implementation to display a multi file form widget. Available variables: table: Table of previously uploaded files. element: The form element for uploading another file. See also template_preprocess_file_widget_multiple() File core/modules/file/templates/file-widget-multiple.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

LanguageNegotiation::$id

The language negotiation plugin ID. Type: string File core/modules/language/src/Annotation/LanguageNegotiation.php, line 30 Class LanguageNegotiation Defines a language negotiation annotation object. Namespace Drupal\language\Annotation Code public $id;

ForumManager::__sleep

public ForumManager::__sleep() File core/modules/forum/src/ForumManager.php, line 496 Class ForumManager Provides forum manager service. Namespace Drupal\forum Code public function __sleep() { $vars = $this->defaultSleep(); // Do not serialize static cache. unset($vars['history'], $vars['index'], $vars['lastPostData'], $vars['forumChildren'], $vars['forumStatistics']); return $vars; }

Color::validateColor

public static Color::validateColor(&$element, FormStateInterface $form_state, &$complete_form) Form element validation handler for #type 'color'. File core/lib/Drupal/Core/Render/Element/Color.php, line 52 Class Color Provides a form element for choosing a color. Namespace Drupal\Core\Render\Element Code public static function validateColor(&$element, FormStateInterface $form_state, &$complete_form) { $value = trim($element['#value']); // Default to black if no val