protected function Fixed::defineOptions in Views (for Drupal 7) 8.3
Retrieve the options when this is a new access control plugin
Overrides ArgumentDefaultPluginBase::defineOptions
File
- lib/
Drupal/ views/ Plugin/ views/ argument_default/ Fixed.php, line 25 - Definition of 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;
}