Searched refs:setting (Results 1 – 11 of 11) sorted by relevance
| /dokuwiki/lib/plugins/config/_test/Setting/ |
| H A D | AbstractSettingTest.php | 26 $setting = new $this->class('test'); 27 $this->assertEquals('test', $setting->getKey()); 28 $this->assertSame(false, $setting->isProtected()); 29 $this->assertSame(true, $setting->isDefault()); 30 $this->assertSame(false, $setting->hasError()); 31 $this->assertSame(false, $setting->shouldBeSaved()); 36 $setting = new $this->class('test'); 37 $this->assertSame(true, $setting->shouldHaveDefault()); 42 $setting = new $this->class('test'); 43 $this->assertEquals('test', $setting->getPrettyKey(false)); [all …]
|
| H A D | SettingTest.php | 36 $setting = new $this->class('test'); 37 $setting->initialize('ignore', $in); 39 $this->assertEquals($out, $setting->out('conf')); 65 $setting = new $this->class('test'); 66 $setting->initialize($default, $local, null); 67 $this->assertSame($expect, $setting->shouldBeSaved());
|
| /dokuwiki/lib/plugins/config/ |
| H A D | admin.php | 102 foreach ($this->configuration->getSettings() as $setting) { 103 if ($setting instanceof SettingHidden) { 105 } elseif ($setting instanceof SettingFieldset) { 114 if ($first_plugin_fieldset && $setting->getType() == 'plugin') { 117 } elseif ($first_template_fieldset && $setting->getType() == 'template') { 121 echo '<fieldset id="' . $setting->getKey() . '">'; 122 echo '<legend>' . $setting->prompt($this) . '</legend>'; 127 [$label, $input] = $setting->html($this, $this->hasErrors); 129 $class = $setting->isDefault() 131 : ($setting->isProtected() ? ' class="protected"' : ''); [all …]
|
| /dokuwiki/lib/plugins/config/_test/ |
| H A D | DocumentationTest.php | 28 foreach ($configuration->getSettings() as $setting) { 29 if (is_a($setting, SettingHidden::class)) continue; 30 if (is_a($setting, SettingFieldset::class)) continue; 32 $key = $setting->getKey(); 33 $pretty = $setting->getPrettyKey();
|
| /dokuwiki/inc/Extension/ |
| H A D | PluginInterface.php | 93 * @param string $setting the setting to access 97 public function getConf($setting, $notset = false); argument
|
| H A D | PluginTrait.php | 185 public function getConf($setting, $notset = false) argument 192 if (isset($this->conf[$setting])) { 193 return $this->conf[$setting];
|
| /dokuwiki/lib/plugins/config/core/ |
| H A D | Writer.php | 51 foreach ($settings as $setting) { 52 if ($setting->shouldBeSaved()) { 53 $out .= $setting->out('conf', 'php');
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/ |
| H A D | README.md | 96 added character encoding setting
|
| /dokuwiki/vendor/simplepie/simplepie/idn/ |
| H A D | ReadMe.txt | 33 arrays. The default format is UTF-8. For setting different encodings, you can
|
| /dokuwiki/vendor/splitbrain/php-cli/ |
| H A D | README.md | 106 terminal width on its own. It can be overwritten by setting a ``COLUMNS`` environment variable.
|
| /dokuwiki/vendor/geshi/geshi/ |
| H A D | CHANGELOG | 377 - Added a PARSER_CONTROL setting to treat whitespace inside of keywords in 380 - Added a possibility to allow setting the style for escape characters (BenBE) 509 … code is found in this mode, we fallback to the same setting as if GESHI_NEVER was set. That way it 627 - Implemented setting to force spans to be closed before newlines, see SF#1727398 (Milian Wolff) 800 - Allow setting of lexic permissions in language files (SmokingRope) 844 - Fixed setting of language path (Cliff Stanford)
|