function views_view_delete

Same name and namespace in other branches
  1. 9 core/modules/views/views.module \views_view_delete()

Implements hook_ENTITY_TYPE_delete().

File

core/modules/views/views.module, line 835

Code

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;
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.