Lines Matching refs:attributes
17 protected $attributes = []; variable in dokuwiki\\Form\\Element
26 * @param array $attributes
28 public function __construct($type, $attributes = []) argument
31 $this->attributes = $attributes;
61 $this->attributes[$name] = $value;
66 if (isset($this->attributes[$name])) {
67 return $this->attributes[$name];
81 if (isset($this->attributes[$name])) {
82 unset($this->attributes[$name]);
90 * @param array|null $attributes
93 public function attrs($attributes = null) argument
96 if ($attributes) {
97 foreach ((array) $attributes as $key => $val) {
103 return $this->attributes;