FormCache::$root

The app root. Type: string File core/lib/Drupal/Core/Form/FormCache.php, line 82 Class FormCache Encapsulates the caching of a form and its form state. Namespace Drupal\Core\Form Code protected $root;

EntityType::$label

The human-readable name of the type. Type: string File core/lib/Drupal/Core/Entity/EntityType.php, line 182 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code protected $label = '';

AccountSwitcher::$writeSafeHandler

The write-safe session handler. Type: \Drupal\Core\Session\WriteSafeSessionHandlerInterface File core/lib/Drupal/Core/Session/AccountSwitcher.php, line 33 Class AccountSwitcher An implementation of AccountSwitcherInterface. Namespace Drupal\Core\Session Code protected $writeSafeHandler;

StatementEmpty::$allowRowCount

Is rowCount() execution allowed. Type: bool File core/lib/Drupal/Core/Database/StatementEmpty.php, line 24 Class StatementEmpty Empty implementation of a database statement. Namespace Drupal\Core\Database Code public $allowRowCount = FALSE;

DataDefinition::offsetGet

public &DataDefinition::offsetGet($offset) This is for BC support only. @todo: Remove in https://www.drupal.org/node/1928868. File core/lib/Drupal/Core/TypedData/DataDefinition.php, line 307 Class DataDefinition A typed data definition class for defining data based on defined data types. Namespace Drupal\Core\TypedData Code public function &offsetGet($offset) { if (!isset($this->definition[$offset])) { $this->definition[$offset] = NULL; } return $this->defin

RegionalForm::$countryManager

The country manager. Type: \Drupal\Core\Locale\CountryManagerInterface File core/modules/system/src/Form/RegionalForm.php, line 21 Class RegionalForm Configure regional settings for this site. Namespace Drupal\system\Form Code protected $countryManager;

CurrentRouteMatch::getMasterRouteMatch

public CurrentRouteMatch::getMasterRouteMatch() Gets the master route match.. Return value \Drupal\Core\Routing\RouteMatchInterface Overrides StackedRouteMatchInterface::getMasterRouteMatch File core/lib/Drupal/Core/Routing/CurrentRouteMatch.php, line 126 Class CurrentRouteMatch Default object for current_route_match service. Namespace Drupal\Core\Routing Code public function getMasterRouteMatch() { return $this->getRouteMatch($this->requestStack->getMasterRequest()); }

FieldItemListInterface::defaultValuesFormValidate

public FieldItemListInterface::defaultValuesFormValidate(array $element, array &$form, FormStateInterface $form_state) Validates the submitted default value. Invoked from \Drupal\field_ui\Form\FieldConfigEditForm to allow administrators to configure instance-level default value. Parameters array $element: The default value form element. array $form: The form where the settings form is being included in. \Drupal\Core\Form\FormStateInterface $form_state: The form state of the (entire) config

EntityStorageBase

A base entity storage class. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityStorageBase implements EntityHandlerInterface, EntityStorageInterface File core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 10 Namespace Drupal\Core\Entity Members Name Modifiers Type Description DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by prop

forum-submitted.html.twig

Default theme implementation for a forum post submission string. The submission string indicates when and by whom a topic was submitted. Available variables: author: The author of the post. time: How long ago the post was created. topic: An object with the raw data of the post. Potentially unsafe. Be sure to clean this data before printing. See also template_preprocess_forum_submitted() File core/modules/forum/templates/forum-submitted.html.twig Related topics Theme system overview Fun