protected function View::defineOptions in Views (for Drupal 7) 8.3
Same name in this branch
- 8.3 lib/Views/node/Plugin/views/row/View.php \Views\node\Plugin\views\row\View::defineOptions()
- 8.3 lib/Views/user/Plugin/views/row/View.php \Views\user\Plugin\views\row\View::defineOptions()
- 8.3 lib/Views/comment/Plugin/views/row/View.php \Views\comment\Plugin\views\row\View::defineOptions()
- 8.3 lib/Views/search/Plugin/views/row/View.php \Views\search\Plugin\views\row\View::defineOptions()
- 8.3 lib/Drupal/views/Plugin/views/area/View.php \Drupal\views\Plugin\views\area\View::defineOptions()
Overrides Views\system\Plugin\views\row\Entity::defineOptions().
Overrides Entity::defineOptions
File
- lib/
Views/ comment/ Plugin/ views/ row/ View.php, line 33 - Definition of Views\comment\Plugin\views\row\View.
Class
- View
- Plugin which performs a comment_view on the resulting object.
Namespace
Views\comment\Plugin\views\rowCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['links'] = array(
'default' => TRUE,
);
$options['view_mode']['default'] = 'full';
return $options;
}