function views_plugin_argument_default::init in Views (for Drupal 7) 6.3
Same name and namespace in other branches
- 6.2 plugins/views_plugin_argument_default.inc \views_plugin_argument_default::init()
- 7.3 plugins/views_plugin_argument_default.inc \views_plugin_argument_default::init()
Initialize this plugin with the view and the argument it is linked to.
File
- plugins/
views_plugin_argument_default.inc, line 32 - Contains the fixed argument default plugin.
Class
- views_plugin_argument_default
- The fixed argument default handler; also used as the base.
Code
function init(&$view, &$argument, $options) {
$this->view =& $view;
$this->argument =& $argument;
$this
->convert_options($options);
$this
->unpack_options($this->options, $options);
}