function StylePluginBase::usesTokens

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/style/StylePluginBase.php \Drupal\views\Plugin\views\style\StylePluginBase::usesTokens()
  2. 8.9.x core/modules/views/src/Plugin/views/style/StylePluginBase.php \Drupal\views\Plugin\views\style\StylePluginBase::usesTokens()
  3. 10 core/modules/views/src/Plugin/views/style/StylePluginBase.php \Drupal\views\Plugin\views\style\StylePluginBase::usesTokens()

Return TRUE if this style uses tokens.

Used to ensure we don't fetch tokens when not needed for performance.

File

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

Class

StylePluginBase
Base class for views style plugins.

Namespace

Drupal\views\Plugin\views\style

Code

public function usesTokens() {
    if ($this->usesRowClass()) {
        $class = $this->options['row_class'];
        if (str_contains($class, '{{')) {
            return TRUE;
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.