function StylePluginBase::usesRowClass

Returns the usesRowClass property.

Return value

bool

4 calls to StylePluginBase::usesRowClass()
StylePluginBase::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php
Provide a form to edit options for this plugin.
StylePluginBase::defineOptions in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php
Information about options for all kinds of purposes will be held here. @code 'option_name' => array(
StylePluginBase::get_row_class in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php
Return the token replaced row class for the specified row.
StylePluginBase::uses_tokens in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php
Return TRUE if this style uses tokens.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php, line 131
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 usesRowClass() {
  return $this->usesRowClass;
}