public function CurrentThemeCondition::defaultConfiguration in Drupal 8
Same name and namespace in other branches
- 9 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\ConditionCode
public function defaultConfiguration() {
return [
'theme' => '',
] + parent::defaultConfiguration();
}