1 views_ui_comment_views_wizard.php protected ViewsUiCommentViewsWizard::row_style_options($type)

Add possible row style options.

Per default use fields with base field.

Overrides ViewsUiBaseViewsWizard::row_style_options

File

core/modules/views_ui/wizards/views_ui_comment_views_wizard.php, line 12
Definition of ViewsUiCommentViewsWizard.

Class

ViewsUiCommentViewsWizard
Tests creating comment views with the wizard.

Code

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