function views_plugin_exposed_form::init

Same name in other branches
  1. 7.x-3.x plugins/views_plugin_exposed_form.inc \views_plugin_exposed_form::init()

Initialize the plugin.

Parameters

$view: The view object.

$display: The display handler.

File

plugins/views_plugin_exposed_form.inc, line 16

Class

views_plugin_exposed_form
The base plugin to handle exposed filter forms.

Code

function init(&$view, &$display, $options = array()) {
    $this->view =& $view;
    $this->display =& $display;
    $this->unpack_options($this->options, $options);
}