protected function Standard::defineOptions in Views XML Backend 8
Same name in this branch
- 8 src/Plugin/views/filter/Standard.php \Drupal\views_xml_backend\Plugin\views\filter\Standard::defineOptions()
- 8 src/Plugin/views/sort/Standard.php \Drupal\views_xml_backend\Plugin\views\sort\Standard::defineOptions()
- 8 src/Plugin/views/argument/Standard.php \Drupal\views_xml_backend\Plugin\views\argument\Standard::defineOptions()
- 8 src/Plugin/views/field/Standard.php \Drupal\views_xml_backend\Plugin\views\field\Standard::defineOptions()
Information about options for all kinds of purposes will be held here.
'option_name' => array(
- 'default' => default value,
- 'contains' => (optional) array of items this contains, with its own
defaults, etc. If contains is set, the default will be ignored and
assumed to be array().
),
Return value
array Returns the options of this handler/plugin.
Overrides FieldPluginBase::defineOptions
1 call to Standard::defineOptions()
- Markup::defineOptions in src/
Plugin/ views/ field/ Markup.php - Information about options for all kinds of purposes will be held here.
1 method overrides Standard::defineOptions()
- Markup::defineOptions in src/
Plugin/ views/ field/ Markup.php - Information about options for all kinds of purposes will be held here.
File
- src/
Plugin/ views/ field/ Standard.php, line 31 - Contains \Drupal\views_xml_backend\Plugin\views\field\Standard.
Class
- Standard
- A handler to provide an XML text field.
Namespace
Drupal\views_xml_backend\Plugin\views\fieldCode
protected function defineOptions() {
return parent::defineOptions() + $this
->getDefaultXmlOptions();
}