Lines Matching full:configuration
4 * Configuration Manager admin plugin
12 use dokuwiki\plugin\config\core\Configuration;
25 /** @var Configuration */
26 protected $configuration;
42 // always initialize the configuration
43 $this->configuration = new Configuration();
49 // don't go any further if the configuration is locked
50 if ($this->configuration->isLocked()) return;
53 $ok = $this->configuration->updateSettings($INPUT->arr('config'));
56 if ($this->configuration->hasChanged()) {
57 $this->configuration->save();
59 $this->configuration->touch();
87 if ($this->configuration->isLocked()) {
102 foreach ($this->configuration->getSettings() as $setting) {
157 $undefined_settings = $this->configuration->getUndefined();
193 if (!$this->configuration->isLocked()) {
212 $this->lang = array_merge($this->lang, $this->configuration->getLangs());
233 foreach ($this->configuration->getSettings() as $setting) {
263 if (count($this->configuration->getUndefined()) && $allow_debug) {