PluralTranslatableMarkup::$translatedString

The already translated string. Type: string File core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php, line 31 Class PluralTranslatableMarkup A class to hold plural translatable markup. Namespace Drupal\Core\StringTranslation Code protected $translatedString;

StringStorageException

Defines an exception thrown when storage operations fail. Hierarchy class \Drupal\locale\StringStorageException extends \Exception File core/modules/locale/src/StringStorageException.php, line 8 Namespace Drupal\locale Members

FieldConfigBase::$description

The field description. A human-readable description for the field when used with this bundle. For example, the description will be the help text of Form API elements for this field in entity edit forms. Type: string File core/lib/Drupal/Core/Field/FieldConfigBase.php, line 82 Class FieldConfigBase Base class for configurable field definitions. Namespace Drupal\Core\Field Code protected $description = '';

EntityDefinitionUpdateManager::$entityManager

The entity manager service. Type: \Drupal\Core\Entity\EntityManagerInterface File core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManager.php, line 22 Class EntityDefinitionUpdateManager Manages entity definition updates. Namespace Drupal\Core\Entity Code protected $entityManager;

ViewsPager

Defines a Plugin annotation object for views pager plugins. Hierarchy class \Drupal\Component\Annotation\Plugin implements AnnotationInterfaceclass \Drupal\views\Annotation\ViewsPluginAnnotationBase implements AnnotationInterfaceclass \Drupal\views\Annotation\ViewsPager See also \Drupal\views\Plugin\views\pager\PagerPluginBase Related topics Annotations Annotations for class discovery and metadata description. Views pager plugins Plugins to handle paging in views. File core/modules/view

ViewsData::getAll

public ViewsData::getAll() Gets all table data. Return value array $data An array of table data. See also https://www.drupal.org/node/2723553 File core/modules/views/src/ViewsData.php, line 119 Class ViewsData Class to manage and lazy load cached views data. Namespace Drupal\views Code public function getAll() { if (!$this->fullyLoaded) { $this->allStorage = $this->getData(); } // Set storage from allStorage outside of the fullyLoaded check to prevent // cache c

CsrfRequestHeaderAccessCheck

Access protection against CSRF attacks. Hierarchy class \Drupal\Core\Access\CsrfRequestHeaderAccessCheck implements AccessCheckInterface File core/lib/Drupal/Core/Access/CsrfRequestHeaderAccessCheck.php, line 13 Namespace Drupal\Core\Access Members Name Modifiers Type Description CsrfRequestHeaderAccessCheck::$csrfToken protected property The token generator. CsrfRequestHeaderAccessCheck::$sessionConfiguration protected property The session configuration. CsrfR

ViewExecutable::setShowAdminLinks

public ViewExecutable::setShowAdminLinks($show_admin_links) Enables admin links on the rendered view. Parameters bool $show_admin_links: TRUE if the admin links should be shown. File core/modules/views/src/ViewExecutable.php, line 2371 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public function setShowAdminLinks($show_admin_links) { $this->showAdminLinks = (bool) $show_admin_links; }

NodeAdminRouteSubscriber::__construct

public NodeAdminRouteSubscriber::__construct(ConfigFactoryInterface $config_factory) Constructs a new NodeAdminRouteSubscriber. Parameters \Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory. File core/modules/node/src/EventSubscriber/NodeAdminRouteSubscriber.php, line 27 Class NodeAdminRouteSubscriber Sets the _admin_route for specific node-related routes. Namespace Drupal\node\EventSubscriber Code public function __construct(ConfigFactoryInterface $config_

Select::$order

The fields by which to order this query. This is an associative array. The keys are the fields to order, and the value is the direction to order, either ASC or DESC. Type: array File core/lib/Drupal/Core/Database/Query/Select.php, line 66 Class Select Query builder for SELECT statements. Namespace Drupal\Core\Database\Query Code protected $order = array();