| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Copyright.php | 73 public $label; variable in SimplePie\\Copyright 81 public function __construct($url = null, $label = null) argument 84 $this->label = $label; 119 if ($this->label !== null) { 120 return $this->label;
|
| H A D | Category.php | 81 public $label; variable in SimplePie\\Category 99 * @param string|null $label 102 public function __construct($term = null, $scheme = null, $label = null, $type = null) argument 106 $this->label = $label; 149 if ($this->label === null && $strict !== true) { 152 return $this->label;
|
| /dokuwiki/inc/Form/ |
| H A D | InputElement.php | 19 protected $label; variable in dokuwiki\\Form\\InputElement 29 * @param string $label The label text for this element (will be autoescaped) 31 public function __construct($type, $name, $label = '') argument 36 if ($label) $this->label = new LabelElement($label); 46 return $this->label; 72 if ($this->label) $this->label->attr('for', $id); 86 if ($this->label) $this->label->addClass($class); 161 if ($this->label) { 162 return '<label ' . buildAttributes($this->label->attrs()) . '>' . DOKU_LF 163 . '<span>' . hsc($this->label->val()) . '</span>' . DOKU_LF
|
| H A D | LabelElement.php | 14 * @param string $label This is is raw HTML and will not be escaped 16 public function __construct($label) argument 18 parent::__construct('label', $label);
|
| H A D | CheckableElement.php | 17 * @param string $label The label text for this element 19 public function __construct($type, $name, $label) argument 21 parent::__construct($type, $name, $label); 73 if ($this->label) { 74 return '<label ' . buildAttributes($this->label->attrs()) . '>' . DOKU_LF 76 . '<span>' . $this->label->val() . '</span>' . DOKU_LF
|
| H A D | DropdownElement.php | 23 * @param string $label The label text for this element (will be autoescaped) 25 public function __construct($name, $options, $label = '') argument 27 parent::__construct('dropdown', $name, $label); 36 * @param string $label 41 public function addOptGroup($label, $options) argument 43 if (empty($label)) { 46 $this->optGroups[$label] = new OptGroup($label, $options); 69 foreach ($optGroups as $label => $options) { 70 $this->addOptGroup($label, $options);
|
| H A D | Form.php | 215 * @param string $label 219 public function addTextInput($name, $label = '', $pos = -1) argument 221 return $this->addElement(new InputElement('text', $name, $label), $pos); 228 * @param string $label 232 public function addPasswordInput($name, $label = '', $pos = -1) argument 234 return $this->addElement(new InputElement('password', $name, $label), $pos); 241 * @param string $label 245 public function addRadioButton($name, $label = '', $pos = -1) argument 247 return $this->addElement(new CheckableElement('radio', $name, $label), $pos); 254 * @param string $label [all …]
|
| H A D | TextareaElement.php | 18 * @param string $label The label text for this element 20 public function __construct($name, $label) argument 22 parent::__construct('textarea', $name, $label);
|
| H A D | OptGroup.php | 11 * @param string $label The label text for this element (will be autoescaped) 14 public function __construct($label, $options) argument 16 parent::__construct('optGroup', ['label' => $label]);
|
| H A D | LegacyForm.php | 172 $label = $element->getLabel(); 173 if ($label instanceof LabelElement) { 174 $data['_class'] = $label->attr('class');
|
| /dokuwiki/inc/ |
| H A D | form.php | 446 * @param string $label Label that will be printed before the input. 454 function form_makeField($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = a… argument 456 if (is_null($label)) $label = $name; 457 $elem = array('_elem' => 'field', '_text' => $label, '_class' => $class, 474 * @param null|string $label 481 function form_makeFieldRight($type, $name, $value = '', $label = null, $id = '', $class = '', $attr… argument 483 if (is_null($label)) $label = $name; 484 $elem = array('_elem' => 'fieldright', '_text' => $label, '_class' => $class, 499 * @param null|string $label 506 function form_makeTextField($name, $value = '', $label = null, $id = '', $class = '', $attrs = arra… argument [all …]
|
| /dokuwiki/inc/Menu/Item/ |
| H A D | AbstractItem.php | 46 protected $label = ''; variable in dokuwiki\\Menu\\Item\\AbstractItem 82 if ($this->label !== '') return $this->label; 86 $label = $lang['btn_' . $this->type]; 87 if (strpos($label, '%s')) { 88 $label = sprintf($label, $this->replacement); 90 if ($label === '') $label = '[' . $this->type . ']'; 91 return $label;
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | _forms.css | 20 .dokuwiki label.block { 25 [dir=rtl] .dokuwiki label.block { 29 .dokuwiki label.simple { 34 [dir=rtl] .dokuwiki label.simple { 38 .dokuwiki label.block select, 39 .dokuwiki label.block input.edit { 43 .dokuwiki label span { 71 #dw__login label[for="remember__me"] { 103 #subscribe__form label {
|
| /dokuwiki/lib/plugins/config/ |
| H A D | style.css | 42 [dir=rtl] #config__manager label { 50 [dir=rtl] #config__manager td.value label { 54 #config__manager td.label { 58 [dir=rtl] #config__manager td.label { 62 #config__manager td.label label { 66 [dir=rtl] #config__manager td.label label { 69 #config__manager td.label img { 74 [dir=rtl] #config__manager td.label img { 78 #config__manager td.label span.outkey { 90 [dir=rtl] #config__manager td.label span.outkey { [all …]
|
| /dokuwiki/_test/tests/Form/ |
| H A D | InputElementTest.php | 22 $label = $pq->find('label'); 23 $this->assertTrue($label->count() == 1); 24 $this->assertEquals('label text', $label->find('span')->text()); 73 $label = $pq->find('label'); 74 $this->assertTrue($label->count() == 1); 75 $this->assertEquals('label text', $label->find('span')->text());
|
| H A D | CheckableElementTest.php | 23 $label = $pq->find('label'); 24 $this->assertTrue($label->count() == 2);
|
| /dokuwiki/lib/plugins/config/core/Setting/ |
| H A D | SettingUndefined.php | 37 $label = '<span title="$meta[\'' . $undefined_setting_key . '\']">$' . 41 return [$label, $input];
|
| H A D | SettingString.php | 27 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>'; 30 return [$label, $input];
|
| H A D | SettingPassword.php | 36 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>'; 39 return [$label, $input];
|
| H A D | SettingOnoff.php | 42 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>'; 45 return [$label, $input];
|
| H A D | SettingArray.php | 82 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>'; 85 return [$label, $input];
|
| /dokuwiki/inc/Ui/ |
| H A D | Subscribe.php | 93 foreach ($targets as $val => $label) { 95 $form->addRadioButton('sub_target', $label)->val($val)->attrs($data); 103 foreach ($styles as $val => $label) { 105 $form->addRadioButton('sub_style', $label)->val($val)->attrs($data);
|
| /dokuwiki/lib/images/interwiki/ |
| H A D | skype.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" aria-label="Skype" viewBox="0 0 512 512"><rect width="512" …
|
| H A D | amazon.de.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" aria-label="Amazon" viewBox="0 0 512 512"><rect width="512"…
|
| /dokuwiki/inc/Parsing/Lexer/ |
| H A D | ParallelRegex.php | 48 * @param bool|string $label Label of regex to be returned 51 public function addPattern($pattern, $label = true) argument 55 $this->labels[$count] = $label;
|