ViewsEntitySchemaSubscriber::DATA_TABLE_RENAME

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

ViewsEntitySchemaSubscriber::DATA_TABLE_REMOVAL

Indicates that a data table got removed. File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 38 Class ViewsEntitySchemaSubscriber Reacts to changes on entity types to update all views entities. Namespace Drupal\views\EventSubscriber Code const DATA_TABLE_REMOVAL = 3;

ViewsEntitySchemaSubscriber::DATA_TABLE_ADDITION

Indicates that a data table got added. File core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php, line 33 Class ViewsEntitySchemaSubscriber Reacts to changes on entity types to update all views entities. Namespace Drupal\views\EventSubscriber Code const DATA_TABLE_ADDITION = 2;

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

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::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::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::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::$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

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