function WizardPluginBase::rowStyleOptions
Same name and namespace in other branches
- 11.x 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.
File
-
core/
modules/ views/ src/ Plugin/ views/ wizard/ WizardPluginBase.php, line 613
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', [
$this->base_table,
]);
return $options;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.