Expanded class hierarchy of views_display
class views_display { /** * The name of the plugin that provides the functionality of this display. * * @var string */ var $display_plugin; /** * The machine name of this display. * * @var string */ var $id; /** * The human-readable title of this display. * * @var string */ var $title; /** * Stores all options of the display, like fields, filters etc. * * @var array */ var $display_options; /** * The position of this display relative to other displays. * * @var int */ var $position = 0; function __construct($type, $id, $title, $display_options = array()) { $this->display_plugin = $type; $this->id = $id; $this->display_title = $title; $this->display_options = $display_options; } }