You are here

public function StylePluginBase::usesRowPlugin in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/style/StylePluginBase.php \Drupal\views\Plugin\views\style\StylePluginBase::usesRowPlugin()

Returns the usesRowPlugin property.

Return value

bool

6 calls to StylePluginBase::usesRowPlugin()
StylePluginBase::init in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Overrides \Drupal\views\Plugin\views\PluginBase::init().
StylePluginBase::render in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Render the display in this style.
StylePluginBase::renderGroupingSets in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Render the grouping sets.
StylePluginBase::usesFields in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Return TRUE if this style also uses fields.
StylePluginBase::validate in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Validate that the plugin is correct and can be saved.

... See full list

File

core/modules/views/src/Plugin/views/style/StylePluginBase.php, line 147

Class

StylePluginBase
Base class for views style plugins.

Namespace

Drupal\views\Plugin\views\style

Code

public function usesRowPlugin() {
  return $this->usesRowPlugin;
}