1 views_plugin_argument_default.inc | views_plugin_argument_default::init(&$view, &$argument, $options) |
Initialize this plugin with the view and the argument it is linked to.
File
- core/
modules/ views/ plugins/ views_plugin_argument_default.inc, line 30 - Definition of views_plugin_argument_default.
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);
}