Home
last modified time | relevance | path

Searched refs:setting (Results 1 – 10 of 10) sorted by last modified time

/dokuwiki/lib/plugins/config/core/
H A DWriter.php51 foreach ($settings as $setting) {
52 if ($setting->shouldBeSaved()) {
53 $out .= $setting->out('conf', 'php');
/dokuwiki/lib/plugins/config/
H A Dadmin.php102 foreach ($this->configuration->getSettings() as $setting) {
103 if ($setting instanceof SettingHidden) {
105 } elseif ($setting instanceof SettingFieldset) {
106 // config setting group
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
[all...]
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md106 terminal width on its own. It can be overwritten by setting a ``COLUMNS`` environment variable.
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md96 added character encoding setting
/dokuwiki/inc/
H A Ddeprecated.php63 class setting extends \dokuwiki\plugin\config\core\Setting\Setting
61 class setting extends \dokuwiki\plugin\config\core\Setting\Setting global() class
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt33 arrays. The default format is UTF-8. For setting different encodings, you can
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG375 - Added a PARSER_CONTROL setting to treat whitespace inside of keywords in
378 - Added a possibility to allow setting the style for escape characters (BenBE)
507 code is found in this mode, we fallback to the same setting as if GESHI_NEVER was set. That way it
625 - Implemented setting to force spans to be closed before newlines, see SF#1727398 (Milian Wolff)
798 - Allow setting of lexic permissions in language files (SmokingRope)
842 - Fixed setting of language path (Cliff Stanford)
/dokuwiki/inc/Extension/
H A DPluginInterface.php93 * @param string $setting the setting to access
94 * @param mixed $notset what to return if the setting is not available
97 public function getConf($setting, $notset = false); argument
H A DPluginTrait.php185 public function getConf($setting, $notset = false)
192 if (isset($this->conf[$setting])) {
193 return $this->conf[$setting];
222 * @return array setting => value
161 getConf($setting, $notset = false) global() argument