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

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

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

FieldItemListInterface::deleteRevision

public FieldItemListInterface::deleteRevision() Defines custom revision delete behavior for field values. This method is called from during the process of deleting an entity revision, just before the field values are deleted from storage. It is only called for entity types that support revisioning. File core/lib/Drupal/Core/Field/FieldItemListInterface.php, line 169 Class FieldItemListInterface Interface for fields, being lists of field items. Namespace Drupal\Core\Field Code public fu

SiteSettingsForm::getFormId

public SiteSettingsForm::getFormId() Returns a unique string identifying the form. Return value string The unique string identifying the form. Overrides FormInterface::getFormId File core/lib/Drupal/Core/Installer/Form/SiteSettingsForm.php, line 55 Class SiteSettingsForm Provides a form to configure and rewrite settings.php. Namespace Drupal\Core\Installer\Form Code public function getFormId() { return 'install_settings_form'; }

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()); }

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;

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

CompiledRoute::serialize

public CompiledRoute::serialize() Overrides CompiledRoute::serialize File core/lib/Drupal/Core/Routing/CompiledRoute.php, line 143 Class CompiledRoute A compiled route contains derived information from a route object. Namespace Drupal\Core\Routing Code public function serialize() { // Calling the parent method is safer than trying to optimize out the extra // function calls. $data = unserialize(parent::serialize()); $data['fit'] = $this->fit; $data['patternOutline'] = $thi

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;