DefaultTableMapping::getFieldColumnName

public DefaultTableMapping::getFieldColumnName(FieldStorageDefinitionInterface $storage_definition, $property_name) Generates a column name for a field property. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field storage definition. string $property_name: The name of the property. Return value string A string containing a generated column name for a field data table that is unique among all other fields. Overrides TableMappingInterface::getFieldColumn

ViewsQuery::$id

The plugin ID. Type: string File core/modules/views/src/Annotation/ViewsQuery.php, line 21 Class ViewsQuery Defines a Plugin annotation object for views query plugins. Namespace Drupal\views\Annotation Code public $id;

UserSession::__construct

public UserSession::__construct(array $values = array()) Constructs a new user session. Parameters array $values: Array of initial values for the user session. File core/lib/Drupal/Core/Session/UserSession.php, line 76 Class UserSession An implementation of the user account interface for the global user. Namespace Drupal\Core\Session Code public function __construct(array $values = array()) { foreach ($values as $key => $value) { $this->$key = $value; } }

ConfigFactory::$eventDispatcher

An event dispatcher instance to use for configuration events. Type: \Symfony\Component\EventDispatcher\EventDispatcherInterface File core/lib/Drupal/Core/Config/ConfigFactory.php, line 39 Class ConfigFactory Defines the configuration object factory. Namespace Drupal\Core\Config Code protected $eventDispatcher;

PlaceholderGeneratorInterface

Defines an interface for turning a render array into a placeholder. This encapsulates logic related to generating placeholders. Makes it possible to determine whether a render array can be placeholdered (it can be reconstructed independently of the request context), whether a render array should be placeholdered (its cacheability meets the conditions), and to create a placeholder. Hierarchy interface \Drupal\Core\Render\PlaceholderGeneratorInterface See also \Drupal\Core\Render\RendererInte

ViewsPager::$id

The plugin ID. Type: string File core/modules/views/src/Annotation/ViewsPager.php, line 21 Class ViewsPager Defines a Plugin annotation object for views pager plugins. Namespace Drupal\views\Annotation Code public $id;

Schema::addField

abstract public Schema::addField($table, $field, $spec, $keys_new = array()) Add a new field to a table. Parameters $table: Name of the table to be altered. $field: Name of the field to be added. $spec: The field specification array, as taken from a schema definition. The specification may also contain the key 'initial', the newly created field will be set to the value of the key in all rows. This is most useful for creating NOT NULL columns with no default value in existing tables. Alternativ

ViewExecutable::hasFormElements

public ViewExecutable::hasFormElements() Determines if this view has form elements. Return value bool TRUE if this view contains handlers with views form implementations, FALSE otherwise. File core/modules/views/src/ViewExecutable.php, line 2439 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public function hasFormElements() { foreach ($this->field as $field) { if (property_exists($field, 'views_form_callback') || method_exists($field, 'viewsFo

AliasManager::$whitelist

Holds the array of whitelisted path aliases. Type: \Drupal\Core\Path\AliasWhitelistInterface File core/lib/Drupal/Core/Path/AliasManager.php, line 69 Class AliasManager The default alias manager implementation. Namespace Drupal\Core\Path Code protected $whitelist;

DateFormatter::$units

Contains the different date interval units. This array is keyed by strings representing the unit (e.g. '1 year|@count years') and with the amount of values of the unit in seconds. Type: array File core/lib/Drupal/Core/Datetime/DateFormatter.php, line 68 Class DateFormatter Provides a service to handle various date related functionality. Namespace Drupal\Core\Datetime Code protected $units = array( '1 year|@count years' => 31536000, '1 month|@count months' => 2592000, '1 wee