You are here

public function CurrentThemeCondition::defaultConfiguration in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/src/Plugin/Condition/CurrentThemeCondition.php \Drupal\system\Plugin\Condition\CurrentThemeCondition::defaultConfiguration()

Gets default configuration for this plugin.

Return value

array An associative array with the default configuration.

Overrides ConditionPluginBase::defaultConfiguration

File

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

Class

CurrentThemeCondition
Provides a 'Current Theme' condition.

Namespace

Drupal\system\Plugin\Condition

Code

public function defaultConfiguration() {
  return [
    'theme' => '',
  ] + parent::defaultConfiguration();
}