You are here

protected function EntityLink::defineOptions in Zircon Profile 8.0

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

File

core/modules/comment/src/Plugin/views/field/EntityLink.php, line 33
Contains \Drupal\comment\Plugin\views\field\EntityLink.

Class

EntityLink
Handler for showing comment module's entity links.

Namespace

Drupal\comment\Plugin\views\field

Code

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