protected function Comment::row_style_options

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

Overrides WizardPluginBase::row_style_options

File

drupal/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php, line 70
Definition of Drupal\node\Plugin\views\wizard\Comment.

Class

Comment
Tests creating comment views with the wizard.

Namespace

Drupal\comment\Plugin\views\wizard

Code

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