protected function WizardPluginBase::rowStyleOptions

Retrieves row style plugin names.

Return value

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

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

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php, line 545
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 rowStyleOptions() {

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