You are here

public function StylePluginBase::usesRowClass 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::usesRowClass()

Returns the usesRowClass property.

Return value

bool

4 calls to StylePluginBase::usesRowClass()
StylePluginBase::buildOptionsForm in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Provide a form to edit options for this plugin.
StylePluginBase::defineOptions in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Information about options for all kinds of purposes will be held here.
StylePluginBase::getRowClass in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Return the token replaced row class for the specified row.
StylePluginBase::usesTokens in core/modules/views/src/Plugin/views/style/StylePluginBase.php
Return TRUE if this style uses tokens.

File

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

Class

StylePluginBase
Base class for views style plugins.

Namespace

Drupal\views\Plugin\views\style

Code

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