Home
last modified time | relevance | path

Searched refs:attrs (Results 1 – 25 of 29) sorted by path

12

/dokuwiki/inc/Form/
H A DButtonElement.php34 return '<button ' . buildAttributes($this->attrs(), true) . '>' . $this->content . '</button>';
H A DCheckableElement.php74 return '<label ' . buildAttributes($this->label->attrs()) . '>' . DOKU_LF
H A DDropdownElement.php83 * 'attrs' => array (
180 $attr = $this->attrs();
H A DElement.php93 public function attrs($attributes = null) function in dokuwiki\\Form\\Element
H A DFieldsetOpenElement.php34 $html = '<fieldset ' . buildAttributes($this->attrs()) . '>';
H A DForm.php485 $html = '<form ' . buildAttributes($this->attrs()) . '>';
H A DInputElement.php151 return '<input ' . buildAttributes($this->attrs()) . ' />';
162 return '<label ' . buildAttributes($this->label->attrs()) . '>' . DOKU_LF
H A DLabelElement.php28 return '<label ' . buildAttributes($this->attrs()) . '>' . $this->val() . '</label>';
H A DLegacyForm.php35 ->attrs($attr)
42 ->attrs($attr)
48 ->attrs($attr)
54 ->attrs($attr)
60 ->attrs($attr)
66 ->attrs($attr)
73 ->attrs($attr)
83 ->attrs($attr)
163 $legacy = new \Doku_Form($this->attrs());
170 $data = $element->attrs();
[all...]
H A DOptGroup.php49 * 'attrs' => array (
70 array_key_exists('attrs', $val) &&
71 is_array($val['attrs']) &&
72 array_key_exists('selected', $val['attrs'])
98 $html = '<optgroup ' . buildAttributes($this->attrs()) . '>';
112 $attrs = '';
113 if (!empty($val['attrs']) && is_array($val['attrs'])) {
114 $attrs = buildAttributes($val['attrs']);
[all...]
H A DTagCloseElement.php76 public function attrs($attributes = null) function in dokuwiki\\Form\\TagCloseElement
H A DTagElement.php30 return '<' . $this->val() . ' ' . buildAttributes($this->attrs()) . ' />';
H A DTagOpenElement.php31 return '<' . $this->val() . ' ' . buildAttributes($this->attrs()) . '>';
H A DTextareaElement.php51 return '<textarea ' . buildAttributes($this->attrs()) . '>' .
/dokuwiki/inc/Ui/
H A DEditor.php109 ->attrs(['accesskey' => 's', 'tabindex' => '4'])
112 ->attrs(['accesskey' => 'p', 'tabindex' => '5'])
115 ->attrs(['tabindex' => '6']);
121 ->attrs(['size' => '50', 'tabindex' => '2'])
207 $data['form']->addTextarea('wikitext', '')->attrs($attr)->val($TEXT)
H A DPageConflict.php51 $form->addButton('do[save]', $lang['btn_save'])->attrs(['type' => 'submit', 'accesskey' => 's']);
52 $form->addButton('do[cancel]', $lang['btn_cancel'])->attrs(['type' => 'submit']);
H A DPageDraft.php47 $form->addButton('do[recover]', $lang['btn_recover'])->attrs(['type' => 'submit', 'tabindex' => '1']);
48 $form->addButton('do[draftdel]', $lang['btn_draftdel'])->attrs(['type' => 'submit', 'tabindex' => '2']);
49 $form->addButton('do[show]', $lang['btn_cancel'])->attrs(['type' => 'submit', 'tabindex' => '3']);
H A DSubscribe.php95 $form->addRadioButton('sub_target', $label)->val($val)->attrs($data);
105 $form->addRadioButton('sub_style', $label)->val($val)->attrs($data);
H A DUserProfile.php63 $input = $form->addPasswordInput('oldpass', $lang['oldpass'])->attrs($attr)
88 ->attrs($attr)
97 ->attrs($attr)
106 ->attrs($attr)
114 $input = $form->addPasswordInput('newpass', $lang['newpass'])->attrs($attr)->addClass('edit');
118 $input = $form->addPasswordInput('passchk', $lang['passchk'])->attrs($attr)->addClass('edit');
150 ->attrs(['required' => 'required'])
H A DUserRegister.php41 $input = $form->addTextInput('login', $lang['user'])->attrs($base_attrs)->addClass('edit')
47 $input = $form->addPasswordInput('pass', $lang['pass'])->attrs($base_attrs)->addClass('edit');
50 $input = $form->addPasswordInput('passchk', $lang['passchk'])->attrs($base_attrs)->addClass('edit');
55 $input = $form->addTextInput('fullname', $lang['fullname'])->attrs($base_attrs)->addClass('edit')
60 $input = $form->addTextInput('email', $lang['email'])->attrs($email_attrs)->addClass('edit')
/dokuwiki/inc/
H A Dform.php343 * @param array $attrs Optional attributes.
348 function form_makeTag($tag, $attrs = array())
351 return array_merge($elem, $attrs);
361 * @param array $attrs Optional attributes.
366 function form_makeOpenTag($tag, $attrs = array()) argument
369 return array_merge($elem, $attrs);
397 * @param array $attrs Optional attributes.
402 function form_makeWikiText($text, $attrs = array())
406 return array_merge($elem, $attrs);
419 * @param array $attrs Optiona
349 form_makeTag($tag, $attrs = array()) global() argument
400 form_makeWikiText($text, $attrs = array()) global() argument
421 form_makeButton($type, $act, $value = '', $attrs = array()) global() argument
450 form_makeField($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
476 form_makeFieldRight($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
500 form_makeTextField($name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
524 form_makePasswordField($name, $label = null, $id = '', $class = '', $attrs = array()) global() argument
547 form_makeFileField($name, $label = null, $id = '', $class = '', $attrs = array()) global() argument
573 form_makeCheckboxField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
598 form_makeRadioField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
630 form_makeMenuField($name, $values, $selected = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
676 form_makeListboxField($name, $values, $selected = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
718 form_tag($attrs) global() argument
734 form_opentag($attrs) global() argument
750 form_closetag($attrs) global() argument
766 form_openfieldset($attrs) global() argument
798 form_hidden($attrs) global() argument
814 form_wikitext($attrs) global() argument
836 form_button($attrs) global() argument
856 form_field($attrs) global() argument
880 form_fieldright($attrs) global() argument
904 form_textfield($attrs) global() argument
930 form_passwordfield($attrs) global() argument
958 form_filefield($attrs) global() argument
987 form_checkboxfield($attrs) global() argument
1019 form_radiofield($attrs) global() argument
1048 form_menufield($attrs) global() argument
1096 form_listboxfield($attrs) global() argument
[all...]
H A Dmedia.php211 ->attrs(['accesskey' => 's']);
867 $attrs = [];
869 $attrs['checked'] = 'checked';
875 $radio->attrs($attrs);
1571 ->attrs(['type' => 'file']);
1580 $attrs = [];
1581 if ($update) $attrs['checked'] = 'checked';
1583 ->addClass('check')->attrs($attrs);
[all...]
H A Dtemplate.php741 ->attrs([
750 $searchForm->addButton('', $lang['btn_search'])->attrs([
/dokuwiki/lib/plugins/extension/helper/
H A Dgui.php115 ->attrs(['type' => 'submit', 'title' => $this->getLang('search')]);
166 ->attrs(['type' => 'url']);
170 ->attrs(['type' => 'file']);
176 ->attrs(['type' => 'submit', 'title' => $this->getLang('btn_install')]);
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php3866 $attrs = array();
3880 $attrs['class'][] = 'li2';
3884 $attrs['style'][] = $this->line_style2;
3893 $attrs['class'][] = 'li1';
3897 $attrs['style'][] = $this->line_style1;
3916 $attrs['id'][] = "$this->overall_id-$i";
3923 $attrs['class'][] = "lx$i";
3925 $attrs['class'][] = "ln-xtra";
3928 array_push($attrs['style'], $this->get_line_style($i));
3934 foreach ($attrs a
[all...]

12