1 views_plugin_exposed_form.inc | views_plugin_exposed_form::init(&$view, &$display, $options = array()) |
Initialize the plugin.
Parameters
$view: The view object.
$display: The display handler.
File
- core/
modules/ views/ plugins/ views_plugin_exposed_form.inc, line 30 - Definition of views_plugin_exposed_form.
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);
}