Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
),
array Returns the options of this handler/plugin.
Overrides FieldPluginBase::defineOptions
protected function defineOptions() {
$options = parent::defineOptions();
$options['type'] = array(
'default' => 'yes-no',
);
$options['type_custom_true'] = array(
'default' => '',
'translatable' => TRUE,
);
$options['type_custom_false'] = array(
'default' => '',
'translatable' => TRUE,
);
$options['not'] = array(
'default' => FALSE,
'bool' => TRUE,
);
return $options;
}