You are here

function StylePluginBase::usesRowClass in Views (for Drupal 7) 8.3

Returns the usesRowClass property.

Return value

bool

4 calls to StylePluginBase::usesRowClass()
StylePluginBase::buildOptionsForm in lib/Drupal/views/Plugin/views/style/StylePluginBase.php
Provide a form to edit options for this plugin.
StylePluginBase::defineOptions in 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 lib/Drupal/views/Plugin/views/style/StylePluginBase.php
Return the token replaced row class for the specified row.
StylePluginBase::uses_tokens in lib/Drupal/views/Plugin/views/style/StylePluginBase.php
Return TRUE if this style uses tokens.

File

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;
}