Home
last modified time | relevance | path

Searched refs:local (Results 1 – 25 of 42) sorted by path

12

/dokuwiki/conf/
H A Dlocal.php.dist3 * This is an example of how a local.php could look like.
7 * When using the installer, a correct local.php file be generated for
H A Dmysql.conf.php.example18 * To use this configuration you have to copy them to local.protected.php
19 * or at least include this file in local.protected.php.
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt85 * For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the "local zone").
/dokuwiki/inc/Extension/
H A DPluginController.php21 protected $pluginCascade = ['default' => [], 'local' => [], 'protected' => []];
257 // Rebuild list of local settings
259 if ($local_plugins != $this->pluginCascade['local'] || $forceSave) {
283 * Rebuild the set of local plugins
285 * @return array array of plugins to be saved in end($config_cascade['plugins']['local'])
289 //assign to local variable to avoid overwriting
293 //Diff between local+default and default
316 $local = $config_cascade['plugins']['local'];
317 $this->lastLocalConfigFile = array_pop($local);
[all...]
/dokuwiki/inc/
H A Dinit.php76 foreach (['default', 'local', 'protected'] as $config_group) {
90 foreach (['default', 'local'] as $config_group) {
232 $local = $conf['lang'];
233 Event::createAndTrigger('INIT_LANG_LOAD', $local, 'init_lang', true);
226 $local = $conf['lang']; global() variable
H A Dmedia.php1871 * Download a remote file and return local filename
1892 $local = getCacheName(strtolower($url), ".media.$ext");
1893 $mtime = @filemtime($local); // 0 if not exists
1900 if (media_image_download($url, $local)) {
1901 return $local;
1908 if ($mtime) return $local;
H A Dpreload.php.dist6 * local configuration files out of the main ./conf directory.
/dokuwiki/inc/lang/gl/
H A Dstopwords.txt357 local
/dokuwiki/lib/exe/
H A Dcss.php506 * Convert local image URLs to data URLs if the filesize is small
522 $local = DOKU_INC . $url;
523 $size = @filesize($local);
525 $data = base64_encode(file_get_contents($local));
/dokuwiki/lib/plugins/authplain/
H A Dplugin.info.txt6 desc Provides user authentication against DokuWiki's local password storage
/dokuwiki/lib/plugins/config/core/
H A DConfiguration.php31 /** @var array all local settings */
32 protected $local; variable in dokuwiki\\plugin\\config\\core\\Configuration
54 $this->local = $this->loader->loadLocal();
164 ...array_keys($this->local),
177 $l = $this->local[$key] ?? null;
/dokuwiki/lib/plugins/config/core/Setting/
H A DSetting.php17 /** @var mixed the local value of this setting */ variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting
18 protected $local;
59 * @param mixed $local local setting value
62 public function initialize($default = null, $local = null, $protected = null)
65 $this->local = $this->cleanValue($local);
72 * - if changed value passes validation check, set $this->local to the new value
83 $value = is_null($this->local) ? $this->default : $this->local;
60 initialize($default = null, $local = null, $protected = null) global() argument
[all...]
H A DSettingArray.php50 $value = is_null($this->local) ? $this->default : $this->local;
61 $this->local = $input;
76 $value = is_null($this->local) ? $this->default : $this->local;
H A DSettingAuthtype.php11 public function initialize($default = null, $local = null, $protected = null) argument
21 parent::initialize($default, $local, $protected);
31 $local = $this->local; // save this, parent::update() may change it
33 $this->local = $local; // restore original, more error checking to come
59 $this->local = $input;
H A DSettingCompression.php13 public function initialize($default = null, $local = null, $protected = null) argument
20 parent::initialize($default, $local, $protected);
H A DSettingDirchoice.php13 public function initialize($default = null, $local = null, $protected = null) argument
32 parent::initialize($default, $local, $protected);
H A DSettingEmail.php19 $value = is_null($this->local) ? $this->default : $this->local;
22 $this->local = $input;
57 $this->local = $input;
H A DSettingImConvert.php17 $value = is_null($this->local) ? $this->default : $this->local;
26 $this->local = $input;
H A DSettingLicense.php13 public function initialize($default = null, $local = null, $protected = null) argument
22 parent::initialize($default, $local, $protected);
H A DSettingMulticheckbox.php23 $value = is_null($this->local) ? $this->default : $this->local;
32 $this->local = $input;
48 $value = is_null($this->local) ? $this->default : $this->local;
H A DSettingMultichoice.php23 $value = is_null($this->local) ? $this->default : $this->local;
66 $value = is_null($this->local) ? $this->default : $this->local;
71 $this->local = $input;
H A DSettingNumeric.php20 $local = $this->local;
23 $numeric_local = (int) eval('return ' . $this->local . ';');
30 $this->local = $local;
42 $local = $this->local === '' ? "''" : $this->local;
43 $out = '$' . $var . "['" . $this->getArrayKey() . "'] = " . $local . ";\n";
H A DSettingNumericopt.php20 if ($input == $this->local) return false;
21 $this->local = $input;
H A DSettingOnoff.php36 $value = is_null($this->local) ? $this->default : $this->local;
54 $value = is_null($this->local) ? $this->default : $this->local;
57 $this->local = $input;
H A DSettingPassword.php24 $this->local = conf_encodeString($input, $this->code);

12