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 HandlerBase::defineOptions
protected function defineOptions() {
$options = parent::defineOptions();
$options['default_action'] = array(
'default' => 'ignore',
);
$options['exception'] = array(
'contains' => array(
'value' => array(
'default' => 'all',
),
'title_enable' => array(
'default' => FALSE,
'bool' => TRUE,
),
'title' => array(
'default' => 'All',
'translatable' => TRUE,
),
),
);
$options['title_enable'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['title'] = array(
'default' => '',
'translatable' => TRUE,
);
$options['breadcrumb_enable'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['breadcrumb'] = array(
'default' => '',
'translatable' => TRUE,
);
$options['default_argument_type'] = array(
'default' => 'fixed',
);
$options['default_argument_options'] = array(
'default' => array(),
);
$options['default_argument_skip_url'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['summary_options'] = array(
'default' => array(),
);
$options['summary'] = array(
'contains' => array(
'sort_order' => array(
'default' => 'asc',
),
'number_of_records' => array(
'default' => 0,
),
'format' => array(
'default' => 'default_summary',
),
),
);
$options['specify_validation'] = array(
'default' => FALSE,
'bool' => TRUE,
);
$options['validate'] = array(
'contains' => array(
'type' => array(
'default' => 'none',
),
'fail' => array(
'default' => 'not found',
),
),
);
$options['validate_options'] = array(
'default' => array(),
);
return $options;
}