You are here

function views_plugin_exposed_form::init in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 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);
}