views_view_delete

views_view_delete(EntityInterface $entity)

Implements hook_ENTITY_TYPE_delete().

File

core/modules/views/views.module, line 820
Primarily Drupal hooks and global API functions to manipulate views.

Code

1
2
3
4
5
6
7
8
9
10
11
function views_view_delete(EntityInterface $entity) {
  // Rebuild the routes in case there is a routed display.
  $executable = Views::executableFactory()->get($entity);
  $executable->initDisplay();
  foreach ($executable->displayHandlers as $display) {
    if ($display->getRoutedDisplay()) {
      \Drupal::service('router.builder')->setRebuildNeeded();
      break;
    }
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.