You are here

function views_delete_view in Views (for Drupal 7) 7.3

Export CRUD callback to delete a view.

1 string reference to 'views_delete_view'
views_schema_6000 in ./views.install
Views 2's initial schema.

File

./views.module, line 1818
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_delete_view(&$view) {
  return $view
    ->delete(TRUE);
}