function CurrentThemeCondition::summary
Same name in other branches
- 9 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::summary()
- 8.9.x core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::summary()
- 11.x core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::summary()
Overrides ConditionInterface::summary
File
-
core/
modules/ system/ src/ Plugin/ Condition/ CurrentThemeCondition.php, line 114
Class
- CurrentThemeCondition
- Provides a 'Current Theme' condition.
Namespace
Drupal\system\Plugin\ConditionCode
public function summary() {
if ($this->isNegated()) {
return $this->t('The current theme is not @theme', [
'@theme' => $this->configuration['theme'],
]);
}
return $this->t('The current theme is @theme', [
'@theme' => $this->configuration['theme'],
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.