public function ModuleEnabled::defaultConfiguration in Varbase Total Control Dashboard 8
Same name and namespace in other branches
- 8.6 src/Plugin/Condition/ModuleEnabled.php \Drupal\varbase_total_control\Plugin\Condition\ModuleEnabled::defaultConfiguration()
- 8.5 src/Plugin/Condition/ModuleEnabled.php \Drupal\varbase_total_control\Plugin\Condition\ModuleEnabled::defaultConfiguration()
- 9.0.x src/Plugin/Condition/ModuleEnabled.php \Drupal\varbase_total_control\Plugin\Condition\ModuleEnabled::defaultConfiguration()
Gets default configuration for this plugin.
Return value
array An associative array with the default configuration.
Overrides ConditionPluginBase::defaultConfiguration
File
- src/
Plugin/ Condition/ ModuleEnabled.php, line 34
Class
- ModuleEnabled
- Provides a 'Module' condition.
Namespace
Drupal\varbase_total_control\Plugin\ConditionCode
public function defaultConfiguration() {
return [
'module' => '',
] + parent::defaultConfiguration();
}