function StylePluginBase::usesRowPlugin

Returns the usesRowPlugin property.

Return value

bool

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

... See full list

1 method overrides StylePluginBase::usesRowPlugin()
StyleTest::usesRowPlugin in drupal/core/modules/views/tests/views_test_data/lib/Drupal/views_test_data/Plugin/views/style/StyleTest.php
Returns the usesRowPlugin property.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php, line 121
Definition of Drupal\views\Plugin\views\style\StylePluginBase.

Class

StylePluginBase
Base class to define a style plugin handler.

Namespace

Drupal\views\Plugin\views\style

Code

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