1 views_ui_node_revision_views_wizard.php protected ViewsUiNodeRevisionViewsWizard::row_style_options($type)

Node revisions do not support full posts or teasers, so remove them.

Overrides ViewsUiNodeViewsWizard::row_style_options

File

core/modules/views_ui/wizards/views_ui_node_revision_views_wizard.php, line 15
Definition of ViewsUiNodeRevisionViewsWizard.

Class

ViewsUiNodeRevisionViewsWizard
Tests creating node revision views with the wizard.

Code

protected function row_style_options($type) {
  $options = parent::row_style_options($type);
  unset($options['teasers']);
  unset($options['full_posts']);
  return $options;
}