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