You are here

function views_export_view in Views (for Drupal 7) 7.3

Export CRUD callback to export a view.

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

File

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

Code

function views_export_view(&$view, $indent = '') {
  return $view
    ->export($indent);
}