1 views_ui_node_views_wizard.php protected ViewsUiNodeViewsWizard::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_node_views_wizard.php, line 12
Definition of ViewsUiNodeViewsWizard.

Class

ViewsUiNodeViewsWizard
Tests creating node views with the wizard.

Code

protected function row_style_options($type) {
  $options = array();
  $options['teasers'] = t('teasers');
  $options['full_posts'] = t('full posts');
  $options['titles'] = t('titles');
  $options['titles_linked'] = t('titles (linked)');
  $options['fields'] = t('fields');
  return $options;
}