function ViewsEntitySchemaSubscriber::dataTableRemoval
Same name in other branches
- 9 core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php \Drupal\views\EventSubscriber\ViewsEntitySchemaSubscriber::dataTableRemoval()
- 10 core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php \Drupal\views\EventSubscriber\ViewsEntitySchemaSubscriber::dataTableRemoval()
- 11.x core/modules/views/src/EventSubscriber/ViewsEntitySchemaSubscriber.php \Drupal\views\EventSubscriber\ViewsEntitySchemaSubscriber::dataTableRemoval()
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.
1 call to ViewsEntitySchemaSubscriber::dataTableRemoval()
- ViewsEntitySchemaSubscriber::onEntityTypeUpdate in core/
modules/ views/ src/ EventSubscriber/ ViewsEntitySchemaSubscriber.php - Reacts to the update of the entity type.
File
-
core/
modules/ views/ src/ EventSubscriber/ ViewsEntitySchemaSubscriber.php, line 400
Class
- ViewsEntitySchemaSubscriber
- Reacts to changes on entity types to update all views entities.
Namespace
Drupal\views\EventSubscriberCode
protected function dataTableRemoval($all_views, $entity_type_id, $old_data_table, $base_table) {
// We move back the data table back to the base table.
$this->processHandlers($all_views, function (&$handler_config, ViewEntityInterface $view) use ($entity_type_id, $old_data_table, $base_table) {
if (isset($handler_config['entity_type']) && $handler_config['entity_type'] == $entity_type_id) {
if ($handler_config['table'] == $old_data_table) {
$handler_config['table'] = $base_table;
$view->set('_updated', TRUE);
}
}
});
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.