You are here

function StylePluginBase::usesRowClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 160
Contains \Drupal\views\Plugin\views\style\StylePluginBase.

Class

StylePluginBase
Base class for views style plugins.

Namespace

Drupal\views\Plugin\views\style

Code

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