protected function WizardPluginBase::row_style_options

Retrieves row style plugin names.

Return value

array Returns the plugin names available for the base table of the wizard.

3 calls to WizardPluginBase::row_style_options()
NodeRevision::row_style_options in drupal/core/modules/node/lib/Drupal/node/Plugin/views/wizard/NodeRevision.php
Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::row_style_options().
WizardPluginBase::build_form_style in drupal/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
Adds the style options to the wizard form.
WizardPluginBase::page_display_options in drupal/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php
Retrieves the page display options.
3 methods override WizardPluginBase::row_style_options()
Comment::row_style_options in drupal/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php
Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::row_style_options().
Node::row_style_options in drupal/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php
Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::row_style_options().
NodeRevision::row_style_options in drupal/core/modules/node/lib/Drupal/node/Plugin/views/wizard/NodeRevision.php
Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::row_style_options().

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php, line 544
Definition of Drupal\views\Plugin\views\wizard\WizardPluginBase.

Class

WizardPluginBase
Provides the interface and base class for Views Wizard plugins.

Namespace

Drupal\views\Plugin\views\wizard

Code

protected function row_style_options() {

  // Get all available row plugins by default.
  $options = views_fetch_plugin_names('row', 'normal', array(
    $this->base_table,
  ));
  return $options;
}