| /dokuwiki/_test/tests/inc/ |
| H A D | media_get_from_url.test.php | 13 $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 D | SettingNumeric.php | 20 $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 D | SettingAuthtype.php | 11 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 D | SettingRegex.php | 18 $local = $this->local; 20 $this->local = $local; 32 $this->local = $input;
|
| H A D | Setting.php | 18 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 D | SettingOnoff.php | 36 $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 D | SettingSavedir.php | 15 $value = is_null($this->local) ? $this->default : $this->local; 24 $this->local = $input;
|
| H A D | SettingImConvert.php | 17 $value = is_null($this->local) ? $this->default : $this->local; 26 $this->local = $input;
|
| H A D | SettingEmail.php | 19 $value = is_null($this->local) ? $this->default : $this->local; 22 $this->local = $input; 57 $this->local = $input;
|
| H A D | SettingNumericopt.php | 20 if ($input == $this->local) return false; 21 $this->local = $input;
|
| H A D | SettingArray.php | 50 $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 D | SettingCompression.php | 13 public function initialize($default = null, $local = null, $protected = null) argument 20 parent::initialize($default, $local, $protected);
|
| H A D | SettingMultichoice.php | 23 $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 D | SettingLicense.php | 13 public function initialize($default = null, $local = null, $protected = null) argument 22 parent::initialize($default, $local, $protected);
|
| H A D | SettingString.php | 21 $value = is_null($this->local) ? $this->default : $this->local;
|
| H A D | SettingDirchoice.php | 13 public function initialize($default = null, $local = null, $protected = null) argument 32 parent::initialize($default, $local, $protected);
|
| H A D | SettingMulticheckbox.php | 23 $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 D | SettingRenderer.php | 20 public function initialize($default = null, $local = null, $protected = null) argument 34 parent::initialize($default, $local, $protected);
|
| /dokuwiki/lib/plugins/extension/_test/ |
| H A D | LocalTest.php | 20 $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 D | SettingTest.php | 60 * @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 D | local.php.dist | 3 * 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 D | intro.txt | 2 All changes are stored in a local configuration file and are upgrade safe.
|
| /dokuwiki/lib/plugins/styling/lang/es/ |
| H A D | intro.txt | 2 Todos los cambios se guardan en un archivo de configuración local y son una actualización segura.
|
| /dokuwiki/lib/plugins/authplain/ |
| H A D | plugin.info.txt | 6 desc Provides user authentication against DokuWiki's local password storage
|
| /dokuwiki/lib/plugins/config/core/ |
| H A D | Configuration.php | 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;
|