Home
last modified time | relevance | path

Searched refs:label (Results 451 – 475 of 1053) sorted by path

1...<<11121314151617181920>>...43

/plugin/commonmark/vendor/league/commonmark/src/Inline/Element/
H A DImage.php
H A DLink.php
/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/
H A DCloseBracketParser.php
/plugin/commonmark/vendor/league/commonmark/src/Reference/
H A DReference.php25 private string $label;
33 public function __construct(string $label, string $destination, string $title)
35 $this->label = $label;
42 return $this->label;
24 protected $label; global() variable in League\\CommonMark\\Reference\\Reference
36 __construct(string $label, string $destination, string $title) global() argument
H A DReferenceMap.php22 * A collection of references, indexed by label
49 public function contains(string $label): bool
51 $label = $this->normalizer->normalize($label); argument
53 return isset($this->references[$label]);
56 public function get(string $label): ?ReferenceInterface
58 $label = $this->normalizer->normalize($label);
60 return $this->references[$label] ?? null;
44 contains(string $label) global() argument
H A DReferenceMapInterface.php28 public function contains(string $label): bool;
30 public function get(string $label): ?ReferenceInterface;
34 contains(string $label) global() argument
41 getReference(string $label) global() argument
H A DReferenceParser.php26 // Looking for and parsing the label, i.e. `[foo]` within `[foo]`
51 private ?string $label = null;
141 $this->label = '';
145 $this->label .= "\n";
160 \assert($this->label !== null);
161 $this->label .= $partialLabel;
164 // label might continue on next line
165 $this->label .= "\n";
176 // end of label
183 // spec: A link label ca
[all...]
/plugin/contactmodern/
H A Dsyntax.php311 protected function _table_row($label, $name, $type, $default='') { argument
314 $row = '<tr><td>'.$label.'</td><td>';
/plugin/crossdbsqlclient/syntax/
H A Ddbwrapper.php269 foreach ( $headers as $column => $label ) {
271 $headers [$column] = "<th class=\"label\">$label</th>\n";
/plugin/data-au/
H A Dscript.js62 label: name + ' (' + id + ')',
H A Dstyle.css80 #dw__editform fieldset.plugin__dataau table tr td label span {
84 #dw__editform fieldset.plugin__dataau table tr td label {
/plugin/data/Form/
H A DDropdownElement.php27 * @param string $label
29 public function __construct($name, $options, $label = '')
31 InputElement::__construct('dropdown', $name, $label);
28 __construct($name, $options, $label = '') global() argument
/plugin/data/
H A Dscript.js62 label: name + ' (' + id + ')',
H A Dstyle.css97 #dw__editform fieldset.plugin__data table tr td label span {
101 #dw__editform fieldset.plugin__data table tr td label {
/plugin/database/
H A Ddatabase.php533 var $label; variable in Column
561 $this->label = $p_label;
679 $messages->add($this->label.getMyLang('err_dat_extra_pipe').$value);
730 $messages->add($this->label.getMyLang('err_dat_typ_num').$value);
751 $messages->add($this->label.getMyLang('err_dat_typ_int').$value);
760 $messages->add($this->label.getMyLang('err_dat_typ_ext').$value);
766 $messages->add($this->label.getMyLang('err_dat_typ_man'));
1697 $this->output ($column->label);
1755 $this->output($columnObjs[$counter]->label);
1814 $this->output($columnObjs[$counter]->label);
[all …]
/plugin/database2/
H A Ddatabase2.php1994 $label = $this->convertToLink( $href, $label );
3015 $label = strtr( $label, array( '<' => '&lt;' ) );
3018 $tail = ">$label</option>";
3051 $label = array_shift( $def );
3055 $tail = ">$label</option>";
3449 return $label;
3477 $label = $this->renderer->internallink( $href, $label, NULL, true );
3482 return $label;
3895 'label' => trim( $label ),
5810 <td class="label">$label:</td>
[all …]
H A Dprint.css37 table.database2 th.label input
H A Dstyle.css213 table.database2-single-editor tr td.label
/plugin/datatables/assets/datatables.net-bs/css/
H A DdataTables.bootstrap.min.css
/plugin/datatables/assets/datatables.net-plugins/features/searchPane/
H A DdataTables.searchPane.min.css
H A DdataTables.searchPane.min.js
/plugin/datatables/assets/pdfmake/build/
H A Dpdfmake.min.js
/plugin/datatemplate/
H A Dstyle.css13 form.filterform_plugin label.text {
17 form.filterform_plugin label.text input {
21 form.filterform_plugin label.row {
/plugin/datepicker/
H A Dstyle.css188 .calendar .combo .label,
189 .calendar .combo .label-IEfix {
194 .calendar .combo .label-IEfix {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/
H A DHtmlOutputHelper.php88 * @param string $label
91 function link($url, $label = null) { argument
94 return '<a href="' . $url . '">' . ($label ? $this->h($label) : $url) . '</a>';

1...<<11121314151617181920>>...43