/dokuwiki/lib/plugins/authad/adLDAP/ |
H A D | adLDAP.php | 808 if ($attributes["address_city"]){ $mod["l"][0]=$attributes["address_city"]; } 815 if ($attributes["company"]){ $mod["company"][0]=$attributes["company"]; } 820 if ($attributes["email"]){ $mod["mail"][0]=$attributes["email"]; } 822 if ($attributes["firstname"]){ $mod["givenName"][0]=$attributes["firstname"]; } 825 if ($attributes["initials"]){ $mod["initials"][0]=$attributes["initials"]; } 832 if ($attributes["surname"]){ $mod["sn"][0]=$attributes["surname"]; } 833 if ($attributes["title"]){ $mod["title"][0]=$attributes["title"]; } 835 if ($attributes["mobile"]){ $mod["mobile"][0]=$attributes["mobile"]; } 836 if ($attributes["pager"]){ $mod["pager"][0]=$attributes["pager"]; } 837 if ($attributes["ipphone"]){ $mod["ipphone"][0]=$attributes["ipphone"]; } [all …]
|
/dokuwiki/inc/Form/ |
H A D | Element.php | 17 protected $attributes = array(); variable in dokuwiki\\Form\\Element 26 * @param array $attributes 31 $this->attributes = $attributes; 61 $this->attributes[$name] = $value; 66 if (isset($this->attributes[$name])) { 67 return $this->attributes[$name]; 82 unset($this->attributes[$name]); 90 * @param array|null $attributes 93 public function attrs($attributes = null) argument 96 if ($attributes) { [all …]
|
H A D | TagCloseElement.php | 17 * @param array $attributes 19 public function __construct($tag, $attributes = array()) argument 21 parent::__construct('tagclose', $tag, $attributes); 72 * @param array|null $attributes 76 public function attrs($attributes = null) argument 78 if ($attributes === null) {
|
H A D | FieldsetCloseElement.php | 15 * @param array $attributes 17 public function __construct($attributes = array()) argument 19 parent::__construct('', $attributes);
|
H A D | TagElement.php | 16 * @param array $attributes 18 public function __construct($tag, $attributes = array()) argument 20 parent::__construct('tag', $tag, $attributes);
|
H A D | TagOpenElement.php | 17 * @param array $attributes 19 public function __construct($tag, $attributes = array()) argument 21 parent::__construct('tagopen', $tag, $attributes);
|
H A D | FieldsetOpenElement.php | 17 * @param array $attributes 19 public function __construct($legend='', $attributes = array()) argument 24 parent::__construct($legend, $attributes);
|
H A D | ValueElement.php | 24 * @param array $attributes 26 public function __construct($type, $value, $attributes = array()) argument 28 parent::__construct($type, $attributes);
|
H A D | LegacyForm.php | 118 $attributes = array(); 129 $attributes[$key] = $val; 133 return array($control, $attributes);
|
H A D | OptGroup.php | 91 if ($this->attributes['label'] === null) {
|
H A D | Form.php | 29 * @param array $attributes 32 public function __construct($attributes = array(), $unsafe = false) argument 36 parent::__construct('form', $attributes);
|
H A D | DropdownElement.php | 113 if (isset($this->attributes['multiple'])) {
|
/dokuwiki/lib/plugins/authad/adLDAP/classes/ |
H A D | adLDAPFolders.php | 148 * @param array $attributes Default attributes of the ou 151 public function create($attributes) argument 153 if (!is_array($attributes)){ return "Attributes must be an array"; } 154 if (!is_array($attributes["container"])) { return "Container attribute must be an array."; } 155 … if (!array_key_exists("ou_name",$attributes)) { return "Missing compulsory field [ou_name]"; } 156 … if (!array_key_exists("container",$attributes)) { return "Missing compulsory field [container]"; } 158 $attributes["container"] = array_reverse($attributes["container"]); 162 $add["OU"] = $attributes['ou_name']; 164 if (count($attributes['container']) > 0) { 165 $containers = "OU=" . implode(",OU=", $attributes["container"]) . ","; [all …]
|
H A D | adLDAPContacts.php | 62 * @param array $attributes The attributes to set to the contact 65 public function create($attributes) argument 69 if (!array_key_exists("email", $attributes)) { return "Missing compulsory field [email]"; } 71 if (!is_array($attributes["container"])) { return "Container attribute must be an array."; } 74 $add = $this->adldap->adldap_schema($attributes); 77 $add["cn"][0] = $attributes["display_name"]; 82 if (!isset($attributes['exchange_hidefromlists'])) { 87 $attributes["container"] = array_reverse($attributes["container"]); 88 $container= "OU=" . implode(",OU=", $attributes["container"]); 213 public function modify($distinguishedName, $attributes) { argument [all …]
|
H A D | adLDAPUsers.php | 77 public function create($attributes) argument 92 $attributes["display_name"] = $attributes["firstname"] . " " . $attributes["surname"]; 96 $add = $this->adldap->adldap_schema($attributes); 99 $add["cn"][0] = $attributes["display_name"]; 100 $add["samaccountname"][0] = $attributes["username"]; 109 if (!$attributes["enabled"]) { 115 $attributes["container"] = array_reverse($attributes["container"]); 416 if (array_key_exists("enabled", $attributes)){ 417 if ($attributes["enabled"]){ 445 $attributes = array("enabled" => 0); [all …]
|
H A D | adLDAPExchange.php | 85 $attributes = array( 91 $result = $this->adldap->user()->modify($username, $attributes, $isGUID); 128 $add = $this->adldap->adldap_schema($attributes); 189 $attributes['exchange_proxyaddress'] = $proxyValue . $emailAddress; 192 $add = $this->adldap->adldap_schema($attributes); 318 $mod = $this->adldap->adldap_schema($attributes); 333 * @param array $attributes An array of the AD attributes you wish to return 336 public function servers($attributes = array('cn','distinguishedname','serialnumber')) argument 350 * @param array $attributes An array of the AD attributes you wish to return 377 * @param array $attributes An array of the AD attributes you wish to return [all …]
|
H A D | adLDAPGroups.php | 158 * @param array $attributes Default attributes of the group 161 public function create($attributes) argument 163 if (!is_array($attributes)){ return "Attributes must be an array"; } 164 …if (!array_key_exists("group_name", $attributes)){ return "Missing compulsory field [group_name]";… 165 … if (!array_key_exists("container", $attributes)){ return "Missing compulsory field [container]"; } 167 if (!is_array($attributes["container"])){ return "Container attribute must be an array."; } 168 $attributes["container"] = array_reverse($attributes["container"]); 175 $add["cn"] = $attributes["group_name"]; 176 $add["samaccountname"] = $attributes["group_name"]; 178 $add["description"] = $attributes["description"]; [all …]
|
/dokuwiki/lib/plugins/acl/ |
H A D | script.js | 83 var attributes = {}; 87 attributes[att[0]] = decodeURIComponent(att[1]); 89 return attributes;
|
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/ |
H A D | Sanitize.php | 324 foreach ($this->replace_url_attributes as $element => $attributes) 326 $this->replace_urls($document, $element, $attributes); 427 public function replace_urls($document, $tag, $attributes) argument 429 if (!is_array($attributes)) 431 $attributes = array($attributes); 439 foreach ($attributes as $attribute) 495 foreach ($element->attributes as $name => $attr)
|
H A D | Parser.php | 209 $attributes = array(); 220 $attributes[$attrName] = $xml->value; 222 $this->tag_open(null, $tagName, $attributes); 277 public function tag_open($parser, $tag, $attributes) argument 282 foreach ($attributes as $name => $value)
|
/dokuwiki/vendor/geshi/geshi/src/ |
H A D | geshi.php | 2463 $result .= "<span$attributes>"; 2464 $STRICTATTRS = $attributes; 3473 $attributes = ' style="' . 3477 $attributes = ' class="kw' . $k . '"'; 3492 $attributes = ' class="nu'.$id.'"'; 3628 $attributes = ' class="' . 3944 $attributes = ' class="de1"'; 3949 $parsed_code .= '<pre'. $attributes .'>'; 4081 $attributes .= '"'; 4135 return "<pre$attributes>$header" . [all …]
|
/dokuwiki/lib/plugins/authldap/ |
H A D | auth.php | 640 * @param null|array $attributes 651 $attributes = null, argument 656 if (is_null($attributes)) $attributes = array(); 663 $attributes, 672 $attributes, 681 $attributes,
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ |
H A D | X509.php | 1739 if (is_array($attributes)) { 1780 if (is_array($attributes)) { 1781 $size = count($attributes); 1789 unset($attributes[$i]); 4274 if (is_array($attributes)) { 4484 if (!is_array($attributes)) { 4506 $attributes[$key]['value'] = array_values($attributes[$key]['value']); 4516 $attributes = array_values($attributes); 4539 if (!is_array($attributes)) { 4580 if (is_array($attributes)) { [all …]
|
/dokuwiki/vendor/openpsa/universalfeedcreator/ |
H A D | README.md | 137 intelligent auto-truncating of RSS 0.91 attributes 138 don't create some attributes when they're not set 145 now includes most RSS 0.91 attributes
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
H A D | SFTP.php | 362 $this->attributes = array( 402 $this->attributes, 980 $attributes = $this->_parseAttributes($response); 981 if (!isset($attributes['type'])) { 984 $attributes['type'] = $fileType; 987 $contents[$shortname] = $attributes + array('filename' => $shortname); 989 …if (isset($attributes['type']) && $attributes['type'] == NET_SFTP_TYPE_DIRECTORY && ($shortname !=… 997 … $this->_update_stat_cache($temp, (object) array('lstat' => $attributes)); 2836 foreach ($this->attributes as $key => $value) {
|