You are here

protected function EntityLink::defineOptions in Drupal 8

Same name in this branch
  1. 8 core/modules/views/src/Plugin/views/field/EntityLink.php \Drupal\views\Plugin\views\field\EntityLink::defineOptions()
  2. 8 core/modules/comment/src/Plugin/views/field/EntityLink.php \Drupal\comment\Plugin\views\field\EntityLink::defineOptions()
Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/field/EntityLink.php \Drupal\views\Plugin\views\field\EntityLink::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 LinkBase::defineOptions

File

core/modules/views/src/Plugin/views/field/EntityLink.php, line 66

Class

EntityLink
Field handler to present a link to an entity.

Namespace

Drupal\views\Plugin\views\field

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['output_url_as_text'] = [
    'default' => FALSE,
  ];
  $options['absolute'] = [
    'default' => FALSE,
  ];
  return $options;
}