protected function Node::row_style_options in Views (for Drupal 7) 8.3
Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::row_style_options().
Overrides WizardPluginBase::row_style_options
File
- lib/
Views/ node/ Plugin/ views/ wizard/ Node.php, line 77 - Definition of Views\node\Plugin\views\wizard\Node.
Class
- Node
- Tests creating node views with the wizard.
Namespace
Views\node\Plugin\views\wizardCode
protected function row_style_options() {
$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;
}