function CurrentThemeCondition::evaluate

Same name and namespace in other branches
  1. 9 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::evaluate()
  2. 10 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::evaluate()
  3. 11.x core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::evaluate()

Overrides ConditionInterface::evaluate

File

core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php, line 102

Class

CurrentThemeCondition
Provides a 'Current Theme' condition.

Namespace

Drupal\system\Plugin\Condition

Code

public function evaluate() {
    if (!$this->configuration['theme']) {
        return TRUE;
    }
    return $this->themeManager
        ->getActiveTheme()
        ->getName() == $this->configuration['theme'];
}

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