Home
last modified time | relevance | path

Searched refs:local (Results 1 – 25 of 49) sorted by relevance

12

/dokuwiki/_test/tests/inc/
H A Dmedia_get_from_url.test.php13 $local = media_get_from_URL('http://www.google.com/images/srpr/logo3w.png','png',-1);
24 clearstatcache(false, $local);
25 $this->assertTrue($local !== false);
26 $this->assertFileExists($local);
27 $this->assertEquals($time, filemtime($local));
29 unlink($local);
39 $local = media_get_from_URL('http://www.google.com/images/srpr/logo3w.png','png',0);
53 $this->assertTrue($local !== false);
54 $this->assertFileExists($local);
57 $time = filemtime($local);
[all …]
/dokuwiki/lib/plugins/config/core/Setting/
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 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 DSettingRegex.php18 $local = $this->local;
20 $this->local = $local;
32 $this->local = $input;
H A DSetting.php18 protected $local; variable in dokuwiki\\plugin\\config\\core\\Setting\\Setting
59 * @param mixed $local local setting value
62 public function initialize($default = null, $local = null, $protected = null) argument
65 $this->local = $this->cleanValue($local);
83 $value = is_null($this->local) ? $this->default : $this->local;
94 $this->local = $input;
207 $value = is_null($this->local) ? $this->default : $this->local;
228 if ($this->local === null) return false;
229 if ($this->default == $this->local) return false;
257 if (is_array($this->local)) {
[all …]
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 DSettingSavedir.php15 $value = is_null($this->local) ? $this->default : $this->local;
24 $this->local = $input;
H A DSettingImConvert.php17 $value = is_null($this->local) ? $this->default : $this->local;
26 $this->local = $input;
H A DSettingEmail.php19 $value = is_null($this->local) ? $this->default : $this->local;
22 $this->local = $input;
57 $this->local = $input;
H A DSettingNumericopt.php20 if ($input == $this->local) return false;
21 $this->local = $input;
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 DSettingCompression.php13 public function initialize($default = null, $local = null, $protected = null) argument
20 parent::initialize($default, $local, $protected);
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 DSettingLicense.php13 public function initialize($default = null, $local = null, $protected = null) argument
22 parent::initialize($default, $local, $protected);
H A DSettingString.php21 $value = is_null($this->local) ? $this->default : $this->local;
H A DSettingDirchoice.php13 public function initialize($default = null, $local = null, $protected = null) argument
32 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 DSettingRenderer.php20 public function initialize($default = null, $local = null, $protected = null) argument
34 parent::initialize($default, $local, $protected);
/dokuwiki/lib/plugins/extension/_test/
H A DLocalTest.php20 $local = new Local();
21 $templates = $local->getTemplates();
34 $local = new Local();
35 $plugins = $local->getPlugins();
48 $local = new Local();
49 $extensions = $local->getExtensions();
/dokuwiki/lib/plugins/config/_test/Setting/
H A DSettingTest.php60 * @param mixed $local The current local value
63 public function testShouldBeSaved($default, $local, $expect) { argument
66 $setting->initialize($default, $local, null);
/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
/dokuwiki/lib/plugins/styling/lang/en/
H A Dintro.txt2 All changes are stored in a local configuration file and are upgrade safe.
/dokuwiki/lib/plugins/styling/lang/es/
H A Dintro.txt2 Todos los cambios se guardan en un archivo de configuración local y son una actualización segura.
/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.php32 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;

12