protected function ViewsUiCommentViewsWizard::row_style_options in Views (for Drupal 7) 7.3
Add possible row style options.
Per default use fields with base field.
Overrides ViewsUiBaseViewsWizard::row_style_options
File
- plugins/views_wizard/ views_ui_comment_views_wizard.class.php, line 13 
- 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;
}