Retrieve the options when this is a new access control plugin
Overrides ArgumentDefaultPluginBase::defineOptions
protected function defineOptions() {
$options = parent::defineOptions();
$options['term_page'] = array(
'default' => TRUE,
'bool' => TRUE,
);
$options['node'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['anyall'] = array(
'default' => ',',
);
$options['limit'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['vocabularies'] = array(
'default' => array(),
);
return $options;
}