protected function Menu::defineOptions in Menu Entity Index 8
Retrieve the options when this is a new access control plugin
Overrides ArgumentDefaultPluginBase::defineOptions
File
- src/
Plugin/ views/ argument_default/ Menu.php, line 65
Class
- Menu
- The menu argument default handler.
Namespace
Drupal\menu_entity_index\Plugin\views\argument_defaultCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['argument'] = [
'default' => '',
];
return $options;
}