protected function WizardPluginBase::rowStyleOptions in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php \Drupal\views\Plugin\views\wizard\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 core/
modules/ node/ src/ Plugin/ views/ wizard/ NodeRevision.php - Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::rowStyleOptions().
- WizardPluginBase::buildFormStyle in core/
modules/ views/ src/ Plugin/ views/ wizard/ WizardPluginBase.php - Adds the style options to the wizard form.
- WizardPluginBase::pageDisplayOptions in core/
modules/ views/ src/ Plugin/ views/ wizard/ WizardPluginBase.php - Retrieves the page display options.
3 methods override WizardPluginBase::rowStyleOptions()
- Comment::rowStyleOptions in core/
modules/ comment/ src/ Plugin/ views/ wizard/ Comment.php - Retrieves row style plugin names.
- Node::rowStyleOptions in core/
modules/ node/ src/ Plugin/ views/ wizard/ Node.php - Retrieves row style plugin names.
- NodeRevision::rowStyleOptions in core/
modules/ node/ src/ Plugin/ views/ wizard/ NodeRevision.php - Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::rowStyleOptions().
File
- core/
modules/ views/ src/ Plugin/ views/ wizard/ WizardPluginBase.php, line 578 - Contains \Drupal\views\Plugin\views\wizard\WizardPluginBase.
Class
- WizardPluginBase
- Base class for Views wizard plugins.
Namespace
Drupal\views\Plugin\views\wizardCode
protected function rowStyleOptions() {
// Get all available row plugins by default.
$options = Views::fetchPluginNames('row', 'normal', array(
$this->base_table,
));
return $options;
}