ViewsDisplayExtender::$no_ui

Whether or not the plugin is selectable in the UI. If it's set to TRUE, you can still use it via the API in config files. Type: bool File core/modules/views/src/Annotation/ViewsDisplayExtender.php, line 57 Class ViewsDisplayExtender Defines a Plugin annotation object for views display extender plugins. Namespace Drupal\views\Annotation Code public $no_ui;

ViewsDisplayExtender::$short_title

(optional) The short title used in the views UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsDisplayExtender.php, line 39 Class ViewsDisplayExtender Defines a Plugin annotation object for views display extender plugins. Namespace Drupal\views\Annotation Code public $short_title = '';

ViewsDisplayExtender::$title

The plugin title used in the views UI. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/views/src/Annotation/ViewsDisplayExtender.php, line 30 Class ViewsDisplayExtender Defines a Plugin annotation object for views display extender plugins. Namespace Drupal\views\Annotation Code public $title = '';

ViewsEntitySchemaSubscriber

Reacts to changes on entity types to update all views entities. Hierarchy class \Drupal\views\EventSubscriber\ViewsEntitySchemaSubscriber implements EntityTypeListenerInterface, EventSubscriberInterface uses EntityTypeEventSubscriberTrait File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 16 Namespace Drupal\views\EventSubscriber Members Name Modifiers Type Description EntityTypeEventSubscriberTrait::getEntityTypeEvents public static function

ViewsEntitySchemaSubscriber::$entityManager

The entity manager. Type: \Drupal\Core\Entity\EntityManagerInterface File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 75 Class ViewsEntitySchemaSubscriber Reacts to changes on entity types to update all views entities. Namespace Drupal\views\EventSubscriber Code protected $entityManager;

ViewsEntitySchemaSubscriber::baseTableRename

protected ViewsEntitySchemaSubscriber::baseTableRename($all_views, $entity_type_id, $old_base_table, $new_base_table) Updates views if a base table is renamed. Parameters \Drupal\views\Entity\View[] $all_views: All views. string $entity_type_id: The entity type ID. string $old_base_table: The old base table name. string $new_base_table: The new base table name. File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 257 Class ViewsEntitySchemaSubscriber Reacts to

ViewsEntitySchemaSubscriber::BASE_TABLE_RENAME

Indicates that a base table got renamed. File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 23 Class ViewsEntitySchemaSubscriber Reacts to changes on entity types to update all views entities. Namespace Drupal\views\EventSubscriber Code const BASE_TABLE_RENAME = 0;

ViewsEntitySchemaSubscriber::dataTableAddition

protected ViewsEntitySchemaSubscriber::dataTableAddition($all_views, EntityTypeInterface $entity_type, $new_data_table, $base_table) Updates views if a data table is added. Parameters \Drupal\views\Entity\View[] $all_views: All views. \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type. string $new_data_table: The new data table. string $base_table: The base table. File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 309 Class ViewsEntitySchem

ViewsEntitySchemaSubscriber::dataTableRemoval

protected ViewsEntitySchemaSubscriber::dataTableRemoval($all_views, $entity_type_id, $old_data_table, $base_table) Updates views if a data table is removed. Parameters \Drupal\views\Entity\View[] $all_views: All views. string $entity_type_id: The entity type ID. string $old_data_table: The name of the previous existing data table. string $base_table: The name of the base table. File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 342 Class ViewsEntitySchemaSubs

ViewsEntitySchemaSubscriber::dataTableRename

protected ViewsEntitySchemaSubscriber::dataTableRename($all_views, $entity_type_id, $old_data_table, $new_data_table) Updates views if a data table is renamed. Parameters \Drupal\views\Entity\View[] $all_views: All views. string $entity_type_id: The entity type ID. string $old_data_table: The old data table name. string $new_data_table: The new data table name. File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 283 Class ViewsEntitySchemaSubscriber Reacts to