function views_save_view in Views (for Drupal 7) 7.3
Export CRUD callback to save a view.
1 string reference to 'views_save_view'
- views_schema_6000 in ./
views.install - Views 2's initial schema.
File
- ./
views.module, line 1811 - Primarily Drupal hooks and global API functions to manipulate views.
Code
function views_save_view(&$view) {
return $view
->save();
}