You are here

function views_export_status in Views (for Drupal 7) 7.3

Export callback to change view status.

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

File

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

Code

function views_export_status($view, $status) {
  ctools_export_set_object_status($view, $status);
  views_invalidate_cache();
}