Home
last modified time | relevance | path

Searched refs:cando (Results 1 – 10 of 10) sorted by path

/dokuwiki/inc/Extension/
H A DAuthPlugin.php23 protected $cando = [ variable in dokuwiki\\Extension\\AuthPlugin
42 * able to operate. Set capabilities in $this->cando
68 return array_keys($this->cando);
74 * Checks the capabilities set in the $this->cando array and
90 return ($this->cando['modPass'] ||
91 $this->cando['modName'] ||
92 $this->cando['modMail']);
95 return ($this->cando['modPass'] ||
96 $this->cando['modName'] ||
97 $this->cando['modMai
[all...]
/dokuwiki/inc/
H A Dhtml.php776 foreach ($auth->getCapabilities() as $cando) {
777 echo ' ' . str_pad($cando, 16) . ' => ' . (int)$auth->canDo($cando) . DOKU_LF;
/dokuwiki/inc/lang/gl/
H A Dconflict.txt3 Hai unha versión máis nova do documento que editaches. Isto sucede cando outro usuario mudou o documento mentres ti estabas a editalo.
H A Dstopwords.txt86 cando
/dokuwiki/lib/plugins/authad/
H A Dauth.php127 $this->cando['modName'] = (bool)$this->conf['update_name'];
128 $this->cando['modMail'] = (bool)$this->conf['update_mail'];
129 $this->cando['getUserCount'] = true;
720 $this->cando['modPass'] = true;
722 $this->cando['modPass'] = false;
731 $this->cando['getUsers'] = true;
733 $this->cando['getUsers'] = false;
/dokuwiki/lib/plugins/authldap/
H A Dauth.php44 $this->cando['modPass'] = $this->getConf('modPass');
631 $this->cando['getUsers'] = true;
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php63 $this->cando['addUser'] = $this->checkConfig(
68 $this->cando['delUser'] = $this->checkConfig(
73 $this->cando['modLogin'] = $this->checkConfig(
78 $this->cando['modPass'] = $this->checkConfig(
83 $this->cando['modName'] = $this->checkConfig(
88 $this->cando['modMail'] = $this->checkConfig(
93 $this->cando['modGroups'] = $this->checkConfig(
98 $this->cando['getUsers'] = $this->checkConfig(
103 $this->cando['getUserCount'] = $this->checkConfig(
108 $this->cando['getGroup
[all...]
/dokuwiki/lib/plugins/authplain/
H A Dauth.php43 $this->cando['addUser'] = true;
44 $this->cando['delUser'] = true;
45 $this->cando['modLogin'] = true;
46 $this->cando['modPass'] = true;
47 $this->cando['modName'] = true;
48 $this->cando['modMail'] = true;
49 $this->cando['modGroups'] = true;
51 $this->cando['getUsers'] = true;
52 $this->cando['getUserCount'] = true;
53 $this->cando['getGroup
[all...]
/dokuwiki/lib/plugins/popularity/lang/gl/
H A Dintro.txt5 Animámoste a levar a cabo este proceso de cando en vez para manteres informados aos desenvolvedores a medida que o teu wiki vaia medrando. Os teus xogos de datos repetidos seran identificados por un ID anónimo.
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php511 * @param bool $cando whether auth backend is capable to do this action
516 protected function htmlInputField($id, $name, $label, $value, $cando, $required, $indent = 0)
518 $class = $cando ? '' : ' class="disabled"';
536 if ($cando) {
512 htmlInputField($id, $name, $label, $value, $cando, $required, $indent = 0) global() argument