public functionsummary() {
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'],
]);
}