protected function QueryParameter::defineOptions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/argument_default/QueryParameter.php \Drupal\views\Plugin\views\argument_default\QueryParameter::defineOptions()
Retrieve the options when this is a new access control plugin
Overrides ArgumentDefaultPluginBase::defineOptions
File
- core/
modules/ views/ src/ Plugin/ views/ argument_default/ QueryParameter.php, line 29 - Contains \Drupal\views\Plugin\views\argument_default\QueryParameter.
Class
- QueryParameter
- A query parameter argument default handler.
Namespace
Drupal\views\Plugin\views\argument_defaultCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['query_param'] = array(
'default' => '',
);
$options['fallback'] = array(
'default' => '',
);
$options['multiple'] = array(
'default' => 'and',
);
return $options;
}