Home
last modified time | relevance | path

Searched refs:cap (Results 1 – 5 of 5) sorted by path

/dokuwiki/inc/Extension/
H A DAuthPlugin.php82 * @param string $cap the capability to check
85 public function canDo($cap) argument
87 switch ($cap) {
103 if (!isset($this->cando[$cap])) {
104 msg("Check for unknown capability '$cap' - Do you use an outdated Plugin?", -1);
106 return $this->cando[$cap];
/dokuwiki/inc/
H A DJpegMeta.php612 $cap = $this->getField(array('Iptc.Headline',
619 if (empty($cap)) return false;
621 if(!$max) return $cap;
623 $new = preg_replace('/\n.+$/','',wordwrap($cap, $max));
624 if($new != $cap) $new .= '...';
H A Dform.php330 foreach ($entries as $val => $cap) {
332 $this->addElement(form_makeRadioField($name, $val, $cap, '', '', $data));
/dokuwiki/inc/parser/
H A Dxhtml.php1692 $cap = $jpeg->getTitle();
1693 if (!empty($cap)) {
1694 $title = $this->_xmlEntities($cap);
/dokuwiki/lib/plugins/authad/
H A Dauth.php135 * @param string $cap
138 public function canDo($cap)
144 return parent::canDo($cap);
133 canDo($cap) global() argument