function view::update
3.x view.inc | view::update() |
Perform automatic updates when loading or importing a view.
Over time, some things about Views or Drupal data has changed. this attempts to do some automatic updates that must happen to ensure older views will at least try to work.
File
- includes/
view.inc, line 274 - Provides the view object type and associated methods.
Class
- view
- An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.
Code
function update() {
// When views are converted automatically the base_table should be renamed
// to have a working query.
$this->base_table = views_move_table($this->base_table);
}