protected function Node::rowStyleOptions

Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::rowStyleOptions().

Overrides WizardPluginBase::rowStyleOptions

File

drupal/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php, line 77
Definition of Drupal\node\Plugin\views\wizard\Node.

Class

Node
Tests creating node views with the wizard.

Namespace

Drupal\node\Plugin\views\wizard

Code

protected function rowStyleOptions() {
  $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;
}