function 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 348

Class

view
An object to contain all of the data to generate a view.

Code

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