protected function ViewsUiCommentViewsWizard::row_style_options
3.x views_ui_comment_views_wizard.class.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
- 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;
}