protected function Fixed::defineOptions

Retrieve the options when this is a new access control plugin

Overrides ArgumentDefaultPluginBase::defineOptions

File

drupal/core/modules/views/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_default

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['argument'] = array(
    'default' => '',
  );
  return $options;
}