AggregatorProcessor::$id

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

AggregatorFetcher::$id

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

ContentEntityFormInterface::setFormDisplay

public ContentEntityFormInterface::setFormDisplay(EntityFormDisplayInterface $form_display, FormStateInterface $form_state) Sets the form display. Sets the form display which will be used for populating form element defaults. Parameters \Drupal\Core\Entity\Display\EntityFormDisplayInterface $form_display: The form display that the current form operates with. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value $this File core/lib/Drupal/Core/Entity/Con

FieldItemListInterface

Interface for fields, being lists of field items. This interface must be implemented by every entity field, whereas contained field items must implement the FieldItemInterface. Some methods of the fields are delegated to the first contained item, in particular get() and set() as well as their magic equivalences. Optionally, a typed data object implementing Drupal\Core\TypedData\TypedDataInterface may be passed to ArrayAccess::offsetSet() instead of a plain value. When implementing this interfac

SqlContentEntityStorage::getStorageSchema

protected SqlContentEntityStorage::getStorageSchema() Gets the entity type's storage schema object. Return value \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema The schema object. File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php, line 242 Class SqlContentEntityStorage A content entity database storage implementation. Namespace Drupal\Core\Entity\Sql Code protected function getStorageSchema() { if (!isset($this->storageSchema)) { $class = $this->entity

ViewExecutable::$field

Stores the field handlers which are initialized on this view. Type: \Drupal\views\Plugin\views\field\FieldPluginBase[] File core/modules/views/src/ViewExecutable.php, line 262 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $field;

ViewExecutable::$header

Stores the area handlers for the header which are initialized on this view. Type: \Drupal\views\Plugin\views\area\AreaPluginBase[] File core/modules/views/src/ViewExecutable.php, line 297 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public $header;

rdf_theme

rdf_theme() Implements hook_theme(). File core/modules/rdf/rdf.module, line 251 Enables semantically enriched output for Drupal sites in the form of RDFa. Code function rdf_theme() { return array( 'rdf_wrapper' => array( 'variables' => array('attributes' => array(), 'content' => NULL), ), 'rdf_metadata' => array( 'variables' => array('metadata' => array()), ), ); }

EntityTypeInterface::isRevisionable

public EntityTypeInterface::isRevisionable() Indicates whether entities of this type have revision support. Return value bool File core/lib/Drupal/Core/Entity/EntityTypeInterface.php, line 581 Class EntityTypeInterface Provides an interface for an entity type and its metadata. Namespace Drupal\Core\Entity Code public function isRevisionable();

FileStorageFactory::getActive

static FileStorageFactory::getActive() Returns a FileStorage object working with the active config directory. Return value \Drupal\Core\Config\FileStorage FileStorage Deprecated in Drupal 8.0.x and will be removed before 9.0.0. Drupal core no longer creates an active directory. File core/lib/Drupal/Core/Config/FileStorageFactory.php, line 18 Class FileStorageFactory Provides a factory for creating config file storage objects. Namespace Drupal\Core\Config Code static function getAct