function Entity::defineOptions
Overrides TokenizeAreaPluginBase::defineOptions
File
- 
              core/
modules/ views/ src/ Plugin/ views/ area/ Entity.php, line 99  
Class
- Entity
 - Provides an area handler which renders an entity in a certain view mode.
 
Namespace
Drupal\views\Plugin\views\areaCode
protected function defineOptions() {
  $options = parent::defineOptions();
  // Per default we enable tokenize, as this is the most common use case for
  // this handler.
  $options['tokenize']['default'] = TRUE;
  // Contains the config target identifier for the entity.
  $options['target'] = [
    'default' => '',
  ];
  $options['view_mode'] = [
    'default' => 'default',
  ];
  $options['bypass_access'] = [
    'default' => FALSE,
  ];
  return $options;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.