public function views_plugin_exposed_form::init in Views (for Drupal 7) 7.3
Same name and namespace in other branches
- 6.3 plugins/views_plugin_exposed_form.inc \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 - Definition of views_plugin_exposed_form.
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);
}