Home
last modified time | relevance | path

Searched refs:attr (Results 276 – 300 of 722) sorted by path

1...<<11121314151617181920>>...29

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DInlineTag.php10 public function open($attr, &$ahtml, &$ihtml) argument
15 if ($this->mpdf->title2annots && isset($attr['TITLE'])) {
28 $objattr['CONTENT'] = $attr['TITLE'];
54 $properties = $this->cssManager->MergeCSS('INLINE', $tag, $attr);
74 if (isset($attr['DIR']) && $attr['DIR'] != '') {
75 $currdir = strtolower($attr['DIR']);
84 if (isset($attr['DIR']) && strtolower($attr['DIR']) === 'rtl') {
88 elseif (isset($attr['DI
[all...]
H A DInput.php11 public function open($attr, &$ahtml, &$ihtml) argument
15 if (!isset($attr['TYPE'])) {
16 $attr['TYPE'] = 'TEXT';
30 if (isset($attr['DISABLED'])) {
33 if (isset($attr['READONLY'])) {
36 if (isset($attr['REQUIRED'])) {
39 if (isset($attr['SPELLCHECK']) && strtolower($attr['SPELLCHECK']) === 'true') {
42 if (isset($attr['TITLE'])) {
43 $objattr['title'] = $attr['TITL
[all...]
H A DLegend.php10 public function open($attr, &$ahtml, &$ihtml) argument
13 $properties = $this->cssManager->MergeCSS('INLINE', 'LEGEND', $attr);
H A DMeter.php10 public function open($attr, &$ahtml, &$ihtml) argument
16 if (!empty($attr['MAX'])) {
17 $max = $attr['MAX'];
21 if (!empty($attr['MIN']) && $tag === 'METER') {
22 $min = $attr['MIN'];
30 if (isset($attr['VALUE']) && ($attr['VALUE'] || $attr['VALUE'] === '0')) {
31 $value = $attr['VALUE'];
40 if (!empty($attr['LO
[all...]
H A DNewColumn.php8 public function open($attr, &$ahtml, &$ihtml) argument
H A DOption.php10 public function open($attr, &$ahtml, &$ihtml) argument
19 if (isset($attr['SELECTED'])) {
23 if (isset($attr['VALUE'])) {
24 $attr['VALUE'] = UtfString::strcode2utf($attr['VALUE']);
25 $attr['VALUE'] = $this->mpdf->lesser_entity_decode($attr['VALUE']);
27 $attr['VALUE'] = mb_convert_encoding($attr['VALUE'], $this->mpdf->mb_enc, 'UTF-8');
30 $this->mpdf->selectoption['currentVAL'] = $attr['VALU
[all...]
H A DPageFooter.php10 public function open($attr, &$ahtml, &$ihtml) argument
15 if ($attr['NAME']) {
16 $pname = $attr['NAME'];
27 if (isset($attr['CONTENT-LEFT'])) {
28 $p['L']['content'] = $attr['CONTENT-LEFT'];
30 if (isset($attr['CONTENT-CENTER'])) {
31 $p['C']['content'] = $attr['CONTENT-CENTER'];
33 if (isset($attr['CONTENT-RIGHT'])) {
34 $p['R']['content'] = $attr['CONTENT-RIGHT'];
37 if (isset($attr['HEADE
[all...]
H A DPre.php8 public function open($attr, &$ahtml, &$ihtml) argument
11 parent::open($attr, $ahtml, $ihtml); // TODO: Change the autogenerated stub
H A DSelect.php10 public function open($attr, &$ahtml, &$ihtml) argument
14 $properties = $this->cssManager->MergeCSS('', 'SELECT', $attr);
22 if (isset($attr['SPELLCHECK']) && strtolower($attr['SPELLCHECK']) === 'true') {
30 if (isset($attr['DISABLED'])) {
31 $this->mpdf->selectoption['DISABLED'] = $attr['DISABLED'];
33 if (isset($attr['READONLY'])) {
34 $this->mpdf->selectoption['READONLY'] = $attr['READONLY'];
36 if (isset($attr['REQUIRED'])) {
37 $this->mpdf->selectoption['REQUIRED'] = $attr['REQUIRE
[all...]
H A DSetHtmlPageFooter.php8 public function open($attr, &$ahtml, &$ihtml) argument
14 if (!empty($attr['NAME'])) {
15 $pname = $attr['NAME'];
20 if (!empty($attr['PAGE'])) { // O|odd|even|E|ALL|[blank]
22 if (strtoupper($attr['PAGE']) === 'O' || strtoupper($attr['PAGE']) === 'ODD') {
24 } elseif (strtoupper($attr['PAGE']) === 'E' || strtoupper($attr['PAGE']) === 'EVEN') {
26 } elseif (strtoupper($attr['PAGE']) === 'ALL') {
32 if (!empty($attr['VALU
[all...]
H A DTBody.php8 public function open($attr, &$ahtml, &$ihtml) argument
14 $this->cssManager->MergeCSS('TABLE', 'TBODY', $attr);
H A DTFoot.php10 public function open($attr, &$ahtml, &$ihtml) argument
16 $properties = $this->cssManager->MergeCSS('TABLE', 'TFOOT', $attr);
H A DTHead.php8 public function open($attr, &$ahtml, &$ihtml) argument
14 $properties = $this->cssManager->MergeCSS('TABLE', 'THEAD', $attr);
H A DTable.php11 public function open($attr, &$ahtml, &$ihtml) argument
153 $properties = $this->cssManager->MergeCSS('TOPTABLE', 'TABLE', $attr);
155 $properties = $this->cssManager->MergeCSS('TABLE', 'TABLE', $attr);
161 } elseif (!empty($attr['WIDTH'])) {
162 $w = $attr['WIDTH'];
165 if (isset($attr['ALIGN']) && array_key_exists(strtolower($attr['ALIGN']), self::ALIGN)) {
166 $table['a'] = $this->getAlign($attr['ALIGN']);
178 } elseif (!empty($attr['DIR'])) {
179 $table['direction'] = strtolower($attr['DI
[all...]
H A DTag.php123 abstract public function open($attr, &$ahtml, &$ihtml); argument
H A DTd.php12 public function open($attr, &$ahtml, &$ihtml) argument
175 $properties = $this->cssManager->MergeCSS('TABLE', $tag, $attr);
190 } elseif (isset($attr['BGCOLOR'])) {
191 $c['bgcolor'] = $attr['BGCOLOR'];
212 } elseif (isset($attr['VALIGN'])) {
213 $c['va'] = $this->getAlign($attr['VALIGN']);
224 if (!empty($attr['ALIGN'])) {
225 if (strtolower($attr['ALIGN']) === 'char') {
226 if (!empty($attr['CHAR'])) {
227 $char = html_entity_decode($attr['CHA
[all...]
H A DTextArea.php10 public function open($attr, &$ahtml, &$ihtml) argument
23 if (isset($attr['DISABLED'])) {
26 if (isset($attr['READONLY'])) {
29 if (isset($attr['REQUIRED'])) {
32 if (isset($attr['SPELLCHECK']) && strtolower($attr['SPELLCHECK']) === 'true') {
35 if (isset($attr['TITLE'])) {
36 $objattr['title'] = $attr['TITLE'];
42 if (isset($attr['NAME'])) {
43 $objattr['fieldname'] = $attr['NAM
[all...]
H A DTextCircle.php11 public function open($attr, &$ahtml, &$ihtml) argument
35 $properties = $this->cssManager->MergeCSS('INLINE', 'TEXTCIRCLE', $attr);
40 if (isset($attr['R'])) {
42 $attr['R'],
48 if (isset($attr['TOP-TEXT'])) {
49 $objattr['top-text'] = UtfString::strcode2utf($attr['TOP-TEXT']);
55 if (isset($attr['BOTTOM-TEXT'])) {
56 $objattr['bottom-text'] = UtfString::strcode2utf($attr['BOTTOM-TEXT']);
62 if (!empty($attr['SPACE-WIDTH'])) {
63 $objattr['space-width'] = $attr['SPAC
[all...]
H A DToc.php8 public function open($attr, &$ahtml, &$ihtml) argument
11 $this->tableOfContents->openTagTOC($attr);
H A DTocEntry.php8 public function open($attr, &$ahtml, &$ihtml) argument
10 if (!empty($attr['CONTENT'])) {
12 $objattr['CONTENT'] = htmlspecialchars_decode($attr['CONTENT'], ENT_QUOTES);
15 if (!empty($attr['LEVEL'])) {
16 $objattr['toclevel'] = $attr['LEVEL'];
20 if (!empty($attr['NAME'])) {
21 $objattr['toc_id'] = $attr['NAME'];
H A DTocPageBreak.php7 public function open($attr, &$ahtml, &$ihtml) argument
9 list($isbreak, $toc_id) = $this->tableOfContents->openTagTOCPAGEBREAK($attr);
14 parent::open($attr, $ahtml, $ihtml);
H A DTr.php10 public function open($attr, &$ahtml, &$ihtml) argument
18 $properties = $this->cssManager->MergeCSS('TABLE', 'TR', $attr);
39 } elseif (isset($attr['BGCOLOR'])) {
41 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['bgcolor'][$this->mpdf->row] = $attr['BGCOLOR'];
61 if (isset($attr['TEXT-ROTATE'])) {
62 $this->mpdf->trow_text_rotate = $attr['TEXT-ROTATE'];
H A DTta.php8 public function open($attr, &$ahtml, &$ihtml) argument
H A DTts.php8 public function open($attr, &$ahtml, &$ihtml) argument
H A DTtz.php8 public function open($attr, &$ahtml, &$ihtml) argument

1...<<11121314151617181920>>...29