You are here

protected function Comment::row_style_options in Views (for Drupal 7) 8.3

Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::row_style_options().

Overrides WizardPluginBase::row_style_options

File

lib/Views/comment/Plugin/views/wizard/Comment.php, line 70
Definition of Views\node\Plugin\views\wizard\Comment.

Class

Comment
Tests creating comment views with the wizard.

Namespace

Views\comment\Plugin\views\wizard

Code

protected function row_style_options() {
  $options = array();
  $options['comment'] = t('comments');
  $options['fields'] = t('fields');
  return $options;
}