protected function PluginBase::defineOptions

Information about options for all kinds of purposes will be held here. @code 'option_name' => array(

  • 'default' => default value,
  • 'translatable' => (optional) TRUE/FALSE (wrap in t() on export if true),
  • '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().
  • 'bool' => (optional) TRUE/FALSE Is the value a boolean value. This will change the export format to TRUE/FALSE instead of 1/0.

),

Return value

array Returns the options of this handler/plugin.

12 calls to PluginBase::defineOptions()
ExposedFormPluginBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php
Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
HandlerBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/HandlerBase.php
Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
None::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/pager/None.php
Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
PluginBase::init in drupal/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php
Initialize the plugin.
PluginBase::unpackOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php
Unpack options over our existing defaults, drilling down into arrays so that defaults don't get totally blown away.

... See full list

14 methods override PluginBase::defineOptions()
AccessPluginBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/access/AccessPluginBase.php
Retrieve the options when this is a new access control plugin
ArgumentDefaultPluginBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument_default/ArgumentDefaultPluginBase.php
Retrieve the options when this is a new access control plugin
ArgumentValidatorPluginBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php
Retrieve the options when this is a new access control plugin
DisplayPluginBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
ExposedFormPluginBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php
Information about options for all kinds of purposes will be held here. @code 'option_name' => array(

... See full list

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php, line 99
Definition of Drupal\views\Plugin\views\PluginBase.

Class

PluginBase

Namespace

Drupal\views\Plugin\views

Code

protected function defineOptions() {
  return array();
}