You are here

protected function ContextualLinks::defineOptions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/contextual/src/Plugin/views/field/ContextualLinks.php \Drupal\contextual\Plugin\views\field\ContextualLinks::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

File

core/modules/contextual/src/Plugin/views/field/ContextualLinks.php, line 40
Contains \Drupal\contextual\Plugin\views\field\ContextualLinks.

Class

ContextualLinks
Provides a handler that adds contextual links.

Namespace

Drupal\contextual\Plugin\views\field

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['fields'] = array(
    'default' => array(),
  );
  $options['destination'] = array(
    'default' => 1,
  );
  return $options;
}