1.20.x view.inc views_display::__construct($type, $id, $title, $display_options = array())

File

modules/views/includes/view.inc, line 2344
Provides the view object type and associated methods.

Class

views_display
A display type in a view.

Code

function __construct($type, $id, $title, $display_options = array()) {
  $this->display_plugin = $type;
  $this->id = $id;
  $this->display_title = $title;
  $this->display_options = $display_options;
}