Home
last modified time | relevance | path

Searched +full:attributes -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 83) sorted by path

1234

/dokuwiki/inc/Form/
H A DDropdownElement.php113 if (isset($this->attributes['multiple'])) {
H A DElement.php15 * @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 DFieldsetCloseElement.php15 * @param array $attributes
17 public function __construct($attributes = []) argument
19 parent::__construct('', $attributes);
H A DFieldsetOpenElement.php16 * @param array $attributes
18 public function __construct($legend = '', $attributes = [])
23 parent::__construct($legend, $attributes);
19 __construct($legend = '', $attributes = array()) global() argument
H A DForm.php27 * 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
H A DLegacyForm.php108 * Parses out what is the elements attributes and what is control info
115 $attributes = [];
126 $attributes[$key] = $val;
130 return [$control, $attributes];
H A DOptGroup.php95 if ($this->attributes['label'] === null) {
H A DTagCloseElement.php17 * @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 DTagElement.php16 * @param array $attributes
18 public function __construct($tag, $attributes = []) argument
20 parent::__construct('tag', $tag, $attributes);
H A DTagOpenElement.php17 * @param array $attributes
19 public function __construct($tag, $attributes = []) argument
21 parent::__construct('tagopen', $tag, $attributes);
H A DValueElement.php8 * 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);
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php129 * Convenience method to get the attributes for constructing an <a> element
/dokuwiki/inc/Ui/
H A DEditor.php200 // set textarea attributes
/dokuwiki/inc/
H A Dcommon.php368 * Build an string of html tag attributes
H A Dform.php23 * 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...]
H A Dhtml.php937 * @param array $atts - additional attributes for the <object> tag
947 // prepare the object attributes
954 // add object attributes for standard compliant browsers
959 // add object attributes for IE
H A Dmedia.php188 // prepare attributes
H A Dtemplate.php409 * instances. Attributes are given as key value pairs. Values will be HTML
1176 * @param array $params - additional image attributes
1210 //prepare attributes
1550 $attributes = $rev ? ['rev' => $rev] : [];
1553 ml($image, $attributes),
/dokuwiki/inc/parser/
H A Dxhtml.php1622 * @param array $link attributes of a link
1902 * @param array $atts - additional attributes for the <video> tag
1989 * @param array $atts - additional attributes for the <audio> tag
/dokuwiki/lib/exe/
H A Dcss.php618 // shorten attributes (1em 1em 1em 1em -> 1em)
/dokuwiki/lib/plugins/acl/
H A Dadmin.php782 //general checkbox attributes
789 //dynamic attributes
H A Dscript.js75 * parse URL attributes into a associative array
83 var attributes = {};
87 attributes[att[0]] = decodeURIComponent(att[1]);
89 return attributes;
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php742 * @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 DadLDAPComputers.php60 * @param array $fields Attributes to return
H A DadLDAPContacts.php62 * @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...]

1234