/dokuwiki/inc/Form/ |
H A D | Element.php | 15 * @var array the attributes of this element 17 protected $attributes = []; variable in dokuwiki\\Form\\Element 26 * @param array $attributes 28 public function __construct($type, $attributes = []) argument 31 $this->attributes = $attributes; 48 * An empty string is returned for unset attributes. 61 $this->attributes[$name] = $value; 66 if (isset($this->attributes[$name])) { 67 return $this->attributes[ 93 attrs($attributes = null) global() argument [all...] |
H A D | TagCloseElement.php | 17 * @param array $attributes 19 public function __construct($tag, $attributes = []) argument 21 parent::__construct('tagclose', $tag, $attributes); 65 throw new \BadMethodCallException('You can\t add attributes to closing tag'); 72 * @param array|null $attributes 76 public function attrs($attributes = null) argument 78 if ($attributes === null) { 81 throw new \BadMethodCallException('You can\t add attributes to closing tag');
|
H A D | FieldsetCloseElement.php | 15 * @param array $attributes 17 public function __construct($attributes = []) argument 19 parent::__construct('', $attributes);
|
H A D | ValueElement.php | 8 * Just like an Element but it's value is not part of its attributes 24 * @param array $attributes 26 public function __construct($type, $value, $attributes = []) argument 28 parent::__construct($type, $attributes);
|
H A D | TagElement.php | 16 * @param array $attributes 18 public function __construct($tag, $attributes = []) argument 20 parent::__construct('tag', $tag, $attributes);
|
H A D | TagOpenElement.php | 17 * @param array $attributes 19 public function __construct($tag, $attributes = []) argument 21 parent::__construct('tagopen', $tag, $attributes);
|
H A D | FieldsetOpenElement.php | 16 * @param array $attributes 18 public function __construct($legend = '', $attributes = []) 23 parent::__construct($legend, $attributes); 19 __construct($legend = '', $attributes = array()) global() argument
|
H A D | LegacyForm.php | 108 * Parses out what is the elements attributes and what is control info 115 $attributes = []; 126 $attributes[$key] = $val; 130 return [$control, $attributes];
|
H A D | Form.php | 27 * Creates a new, empty form with some default attributes 29 * @param array $attributes 32 public function __construct($attributes = [], $unsafe = false) argument 36 parent::__construct('form', $attributes); 42 $self = wl($ID, $get, false, '&'); //attributes are escaped later
|
/dokuwiki/lib/plugins/authad/adLDAP/ |
H A D | adLDAP.php | 742 * @param array $attributes The attributes you wish to query e.g. defaultnamingcontext 745 public function getRootDse($attributes = array("*", "+")) { argument 748 $sr = @ldap_read($this->ldapConnection, NULL, 'objectClass=*', $attributes); 795 * @param array $attributes Attributes to be queried 798 public function adldap_schema($attributes){ argument 800 // LDAP doesn't like NULL attributes, only set them if they have values 806 array_walk($attributes, array($this, 'encode8bit')); 808 if ($attributes["address_cit [all...] |
/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["containe [all...] |
H A D | adLDAPContacts.php | 62 * @param array $attributes The attributes to set to the contact 65 public function create($attributes) argument 68 if (!array_key_exists("display_name", $attributes)) { return "Missing compulsory field [display_name]"; } 69 if (!array_key_exists("email", $attributes)) { return "Missing compulsory field [email]"; } 70 if (!array_key_exists("container", $attributes)) { return "Missing compulsory field [container]"; } 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_hidefromlist 213 modify($distinguishedName, $attributes) global() argument [all...] |
H A D | adLDAPUsers.php | 74 * @param array $attributes The attributes to set to the user account 77 public function create($attributes) argument 80 if (!array_key_exists("username", $attributes)){ return "Missing compulsory field [username]"; } 81 if (!array_key_exists("firstname", $attributes)){ return "Missing compulsory field [firstname]"; } 82 if (!array_key_exists("surname", $attributes)){ return "Missing compulsory field [surname]"; } 83 if (!array_key_exists("email", $attributes)){ return "Missing compulsory field [email]"; } 84 if (!array_key_exists("container", $attributes)){ return "Missing compulsory field [container]"; } 85 if (!is_array($attributes["container"])){ return "Container attribute must be an array."; } 87 if (array_key_exists("password",$attributes) 394 modify($username, $attributes, $isGUID = false) global() argument [all...] |
H A D | adLDAPExchange.php | 85 $attributes = array( 91 $result = $this->adldap->user()->modify($username, $attributes, $isGUID); 125 $attributes['exchange_proxyaddress'] = $proxyValue . 'c=' . $country . ';a=' . $admd . ';p=' . $pdmd . ';o=' . $org . ';s=' . $surname . ';g=' . $givenName . ';'; 128 $add = $this->adldap->adldap_schema($attributes); 189 $attributes['exchange_proxyaddress'] = $proxyValue . $emailAddress; 192 $add = $this->adldap->adldap_schema($attributes); 315 $attributes = array("email"=>$emailAddress,"contact_email"=>"SMTP:" . $emailAddress,"exchange_proxyaddress"=>"SMTP:" . $emailAddress,"exchange_mailnickname" => $mailNickname); 318 $mod = $this->adldap->adldap_schema($attributes); 333 * @param array $attributes An array of the AD attributes yo 336 servers($attributes = array('cn', 'distinguishedname', 'serialnumber')) global() argument 354 storageGroups($exchangeServer, $attributes = array('cn', 'distinguishedname'), $recursive = NULL) global() argument 380 storageDatabases($storageGroup, $attributes = array('cn', 'distinguishedname', 'displayname')) global() argument [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]"; } 166 if (!array_key_exists("description", $attributes)){ return "Missing compulsory field [description]"; } 167 if (!is_array($attributes["container"])){ return "Container attribute must be an array."; } 168 $attributes["containe [all...] |
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/ |
H A D | FeedImage.php | 12 * Mandatory attributes of an image. 17 * Optional attributes of an image.
|
H A D | FeedHtmlField.php | 14 * Mandatory attributes of a FeedHtmlField. 19 * Optional attributes of a FeedHtmlField.
|
H A D | FeedItem.php | 12 * Mandatory attributes of an item. 17 * Optional attributes of an item.
|
/dokuwiki/inc/ |
H A D | form.php | 23 * with '_'. Other keys are HTML attributes that will be included in the element 343 * @param array $attrs Optional attributes. 361 * @param array $attrs Optional attributes. 397 * @param array $attrs Optional attributes. 414 * accesskey attributes, unless you provide one. 419 * @param array $attrs Optional attributes. 449 * @param array $attrs Optional attributes. 638 * @param array $attrs Optional attributes. 684 * @param array $attrs Optional attributes. 723 * Attributes ar [all...] |
/dokuwiki/lib/plugins/acl/ |
H A D | script.js | 75 * parse URL attributes into a associative array 83 var attributes = {}; 87 attributes[att[0]] = decodeURIComponent(att[1]); 89 return attributes;
|
/dokuwiki/lib/plugins/authldap/conf/ |
H A D | default.php | 24 $conf['attributes'] = array();
|
H A D | metadata.php | 15 $meta['attributes'] = array('array');
|
/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/simplepie/simplepie/src/ |
H A D | Sanitize.php | 251 * Set element/attribute key/value pairs of HTML attributes 382 // Strip out HTML tags and attributes that might cause various security problems. 411 foreach ($this->replace_url_attributes as $element => $attributes) { 412 $this->replace_urls($document, $element, $attributes); 496 public function replace_urls($document, $tag, $attributes) 498 if (!is_array($attributes)) { 499 $attributes = [$attributes]; 505 foreach ($attributes as $attribute) { 547 foreach ($element->attributes a 497 replace_urls($document, $tag, $attributes) global() argument [all...] |
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ |
H A D | X509.php | 707 $attributes = &$this->subArray($root, $path); 709 if (is_array($attributes)) { 710 for ($i = 0; $i < count($attributes); $i++) { 711 $id = $attributes[$i]['type']; 715 if (is_array($attributes[$i]['value'])) { 716 $values = &$attributes[$i]['value']; 749 $attributes = &$this->subArray($root, $path); 751 if (is_array($attributes)) { 752 $size = count($attributes); 756 $id = $attributes[ [all...] |