Searched refs:buildAttributes (Results 1 – 24 of 24) sorted by relevance
| /dokuwiki/inc/Form/ |
| H A D | LabelElement.php | 28 return '<label ' . buildAttributes($this->attrs()) . '>' . $this->val() . '</label>';
|
| H A D | TagElement.php | 30 return '<' . $this->val() . ' ' . buildAttributes($this->attrs()) . ' />';
|
| H A D | TagOpenElement.php | 31 return '<' . $this->val() . ' ' . buildAttributes($this->attrs()) . '>';
|
| H A D | ButtonElement.php | 34 … return '<button ' . buildAttributes($this->attrs(), true) . '>' . $this->content . '</button>';
|
| H A D | FieldsetOpenElement.php | 34 $html = '<fieldset ' . buildAttributes($this->attrs()) . '>';
|
| H A D | OptGroup.php | 98 $html = '<optgroup ' . buildAttributes($this->attrs()) . '>'; 114 $attrs = buildAttributes($val['attrs']);
|
| H A D | TextareaElement.php | 51 return '<textarea ' . buildAttributes($this->attrs()) . '>' .
|
| H A D | InputElement.php | 151 return '<input ' . buildAttributes($this->attrs()) . ' />'; 162 return '<label ' . buildAttributes($this->label->attrs()) . '>' . DOKU_LF
|
| H A D | CheckableElement.php | 74 return '<label ' . buildAttributes($this->label->attrs()) . '>' . DOKU_LF
|
| H A D | DropdownElement.php | 189 $html = '<select ' . buildAttributes($attr) . '>';
|
| H A D | Form.php | 485 $html = '<form ' . buildAttributes($this->attrs()) . '>';
|
| /dokuwiki/inc/ |
| H A D | form.php | 282 $form .= '<form ' . buildAttributes($this->params, false) . '><div class="no">' . DOKU_LF; 732 return '<' . $attrs['_tag'] . ' ' . buildAttributes($attrs, true) . '/>'; 749 return '<' . $attrs['_tag'] . ' ' . buildAttributes($attrs, true) . '>'; 783 $s = '<fieldset ' . buildAttributes($attrs, true) . '>'; 838 . buildAttributes($attrs, true) . '>' . DOKU_LF 860 return '<button ' . $p . buildAttributes($attrs, true) . '>' . $value . '</button>'; 882 $s .= ' <input ' . buildAttributes($attrs, true) . ' /></label>'; 906 $s .= '><input ' . buildAttributes($attrs, true) . ' />'; 934 $s .= '<input type="text" ' . buildAttributes($attrs, true) . ' /></label>'; 961 $s .= '<input type="password" ' . buildAttributes($attrs, true) . ' /></label>'; [all …]
|
| H A D | html.php | 965 $out .= '<object ' . buildAttributes($std) . '>' . NL; 968 $out .= '<object ' . buildAttributes($ie) . '>' . NL;
|
| H A D | template.php | 433 echo '<', $tag, ' ', buildAttributes($attr); 1243 $p = buildAttributes($data['params']); 1268 $att = buildAttributes($p);
|
| H A D | common.php | 373 function buildAttributes($params, $skipEmptyStrings = false) function
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | GuiExtension.php | 100 if ($link) $html .= '<a ' . buildAttributes($link) . '>'; 101 $html .= '<img ' . buildAttributes($img) . ' />'; 175 … $html .= ' <a ' . buildAttributes($params, true) . '>' . $this->getLang('homepage_link') . '</a>'; 181 … $html .= ' <a ' . buildAttributes($params, true) . '>' . $this->getLang('bugs_features') . '</a>'; 186 … $html .= ' <a ' . buildAttributes($params, true) . '>' . $this->getLang('donate_action') . '</a>'; 379 …$html .= '<button ' . buildAttributes($attr) . '>' . $this->getLang('btn_' . $action) . '</button>… 461 $html = '<a ' . buildAttributes($params, true) . '>' . hsc($name) . '</a>';
|
| /dokuwiki/lib/plugins/revert/ |
| H A D | admin.php | 156 $att = buildAttributes($p); 167 $att = buildAttributes($p);
|
| /dokuwiki/inc/Menu/Item/ |
| H A D | AbstractItem.php | 133 * @see buildAttributes() 159 $attr = buildAttributes($this->getLinkAttributes($classprefix));
|
| /dokuwiki/inc/Ui/Media/ |
| H A D | Display.php | 49 return '<img src="' . $src . '" ' . buildAttributes($attr) . ' />';
|
| /dokuwiki/inc/Ui/ |
| H A D | SearchState.php | 139 return "<a href='$href' " . buildAttributes($tagAttributes, true) . ">$label</a>";
|
| H A D | Editor.php | 146 … . ' <a ' . buildAttributes($attr, true) . '>' . $license[$conf['license']]['name'] . '</a>');
|
| H A D | PageDiff.php | 527 return '<a ' . buildAttributes($attr) . '><span>' . $lang[$linktype] . '</span></a>';
|
| /dokuwiki/lib/plugins/acl/ |
| H A D | admin.php | 800 $ret .= '<input ' . buildAttributes($atts) . ' /> ';
|
| /dokuwiki/inc/parser/ |
| H A D | xhtml.php | 1939 $out .= '<video ' . buildAttributes($atts) . ' controls="controls"'; 2011 $out .= '<audio ' . buildAttributes($atts) . ' controls="controls">' . NL;
|