function views_plugin_exposed_form::init

Initialize the plugin.

Parameters

object $view: The view object.

object $display: The display handler.

array $options: Any additional options that are being added.

File

plugins/views_plugin_exposed_form.inc, line 33

Class

views_plugin_exposed_form
The base plugin to handle exposed filter forms.

Code

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