public function CurrentThemeCondition::summary in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::summary()
Provides a human readable summary of the condition's configuration.
Overrides ConditionInterface::summary
File
- core/
modules/ system/ src/ Plugin/ Condition/ CurrentThemeCondition.php, line 113
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'],
]);
}