Home
last modified time | relevance | path

Searched refs:isProtected (Results 1 – 15 of 15) sorted by relevance

/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingPassword.php15 if ($this->isProtected()) return false;
32 $disable = $this->isProtected() ? 'disabled="disabled"' : '';
H A DSettingMultichoice.php19 if ($this->isProtected()) {
31 if (!$this->isProtected() && count($this->choices) <= 1) {
64 if ($this->isProtected()) return false;
H A DSettingOnoff.php32 if ($this->isProtected()) {
51 if ($this->isProtected()) return false;
H A DSetting.php80 if ($this->isProtected()) return false;
201 if ($this->isProtected()) {
227 if ($this->isProtected()) return false;
286 public function isProtected() function in dokuwiki\\plugin\\config\\core\\Setting\\Setting
298 return !$this->isProtected() && is_null($this->local);
H A DSettingSavedir.php13 if ($this->isProtected()) return false;
H A DSettingArray.php46 if ($this->isProtected()) return false;
70 if ($this->isProtected()) {
H A DSettingImConvert.php13 if ($this->isProtected()) return false;
H A DSettingString.php15 if ($this->isProtected()) {
H A DSettingEmail.php17 if ($this->isProtected()) return false;
H A DSettingMulticheckbox.php17 if ($this->isProtected()) return false;
42 if ($this->isProtected()) {
/dokuwiki/lib/plugins/config/_test/Setting/
H A DAbstractSettingTest.php28 $this->assertSame(false, $setting->isProtected());
/dokuwiki/lib/plugins/extension/_test/
H A DExtensionTest.php83 $this->assertTrue($extension->isProtected()); // protected because it's the current template
/dokuwiki/lib/plugins/extension/
H A DGuiExtension.php360 if (!$this->extension->isProtected()) $actions[] = 'uninstall';
365 if (!$this->extension->isProtected() && !$this->extension->isTemplate()) {
H A DInstaller.php205 if ($extension->isProtected()) {
253 …if ($extension->isProtected()) throw new Exception('error_disable_protected', [$extension->getId()…
/dokuwiki/lib/plugins/config/
H A Dadmin.php131 : ($setting->isProtected() ? ' class="protected"' : '');