Same name and namespace in other branches
  1. 6.x-3.x includes/view.inc \view::db_objects()

Returns the complete list of dependent objects in a view, for the purpose of initialization and loading/saving to/from the database.

5 calls to view::db_objects()
view::delete in includes/view.inc
Delete the view from the database.
view::load_views in includes/view.inc
Static factory method to load a list of views based upon a $where clause.
view::save in includes/view.inc
Save the view to the database.
view::__construct in includes/view.inc
Standard PHP constructor.
views_load_display_records in ./views.module
Export callback to load the view subrecords, which are the displays.

File

includes/view.inc, line 334
views_objects Objects that represent a View or part of a view

Class

view

Code

static function db_objects() {
  return array(
    'display',
  );
}