golden hour
/home/doctorbruno/public_html/taeionline.com/support/include/mpdf/vendor/mpdf/mpdf/src/Tag
⬆️ Go Up
Upload
File/Folder
Size
Actions
A.php
1.43 KB
Del
OK
Acronym.php
66 B
Del
OK
Address.php
65 B
Del
OK
Annotation.php
2.68 KB
Del
OK
Article.php
65 B
Del
OK
Aside.php
63 B
Del
OK
B.php
60 B
Del
OK
BarCode.php
9.61 KB
Del
OK
Bdi.php
62 B
Del
OK
Bdo.php
62 B
Del
OK
Big.php
62 B
Del
OK
BlockQuote.php
68 B
Del
OK
BlockTag.php
50.99 KB
Del
OK
Bookmark.php
746 B
Del
OK
Br.php
3.08 KB
Del
OK
Caption.php
65 B
Del
OK
Center.php
64 B
Del
OK
Cite.php
63 B
Del
OK
Code.php
63 B
Del
OK
ColumnBreak.php
69 B
Del
OK
Columns.php
1.49 KB
Del
OK
Dd.php
60 B
Del
OK
Del.php
62 B
Del
OK
Details.php
65 B
Del
OK
Div.php
61 B
Del
OK
Dl.php
60 B
Del
OK
DotTab.php
2.19 KB
Del
OK
Dt.php
60 B
Del
OK
Em.php
61 B
Del
OK
FieldSet.php
66 B
Del
OK
FigCaption.php
68 B
Del
OK
Figure.php
64 B
Del
OK
Font.php
63 B
Del
OK
Footer.php
64 B
Del
OK
Form.php
62 B
Del
OK
FormFeed.php
7.74 KB
Del
OK
H1.php
60 B
Del
OK
H2.php
60 B
Del
OK
H3.php
60 B
Del
OK
H4.php
60 B
Del
OK
H5.php
60 B
Del
OK
H6.php
60 B
Del
OK
HGroup.php
64 B
Del
OK
Header.php
64 B
Del
OK
Hr.php
4.58 KB
Del
OK
I.php
60 B
Del
OK
Img.php
14.89 KB
Del
OK
IndexEntry.php
817 B
Del
OK
IndexInsert.php
815 B
Del
OK
InlineTag.php
7.05 KB
Del
OK
Input.php
14.13 KB
Del
OK
Ins.php
62 B
Del
OK
Kbd.php
62 B
Del
OK
Legend.php
1.18 KB
Del
OK
Li.php
60 B
Del
OK
Main.php
62 B
Del
OK
Mark.php
63 B
Del
OK
Meter.php
17.03 KB
Del
OK
Nav.php
61 B
Del
OK
NewColumn.php
327 B
Del
OK
NewPage.php
64 B
Del
OK
Ol.php
60 B
Del
OK
Option.php
1.01 KB
Del
OK
P.php
59 B
Del
OK
PageBreak.php
66 B
Del
OK
PageFooter.php
5.07 KB
Del
OK
PageHeader.php
69 B
Del
OK
Pre.php
281 B
Del
OK
Progress.php
2.43 KB
Del
OK
Q.php
60 B
Del
OK
S.php
60 B
Del
OK
Samp.php
63 B
Del
OK
Section.php
65 B
Del
OK
Select.php
5.13 KB
Del
OK
SetHtmlPageFooter.php
2.27 KB
Del
OK
SetHtmlPageHeader.php
84 B
Del
OK
SetPageFooter.php
80 B
Del
OK
SetPageHeader.php
80 B
Del
OK
Small.php
64 B
Del
OK
Span.php
63 B
Del
OK
Strike.php
65 B
Del
OK
Strong.php
65 B
Del
OK
Sub.php
62 B
Del
OK
SubstituteTag.php
382 B
Del
OK
Summary.php
65 B
Del
OK
Sup.php
62 B
Del
OK
TBody.php
542 B
Del
OK
TFoot.php
1.64 KB
Del
OK
THead.php
1.65 KB
Del
OK
Table.php
54.95 KB
Del
OK
Tag.php
2.16 KB
Del
OK
Td.php
18.53 KB
Del
OK
TextArea.php
5.41 KB
Del
OK
TextCircle.php
8.29 KB
Del
OK
Th.php
170 B
Del
OK
Time.php
63 B
Del
OK
Toc.php
262 B
Del
OK
TocEntry.php
893 B
Del
OK
TocPageBreak.php
300 B
Del
OK
Tr.php
4.95 KB
Del
OK
Tt.php
61 B
Del
OK
Tta.php
578 B
Del
OK
Tts.php
340 B
Del
OK
Ttz.php
346 B
Del
OK
U.php
60 B
Del
OK
Ul.php
60 B
Del
OK
VarTag.php
65 B
Del
OK
WatermarkImage.php
705 B
Del
OK
WatermarkText.php
430 B
Del
OK
Edit: IndexEntry.php
<?php namespace Mpdf\Tag; class IndexEntry extends Tag { public function open($attr, &$ahtml, &$ihtml) { if (!empty($attr['CONTENT'])) { if (!empty($attr['XREF'])) { $this->mpdf->IndexEntry(htmlspecialchars_decode($attr['CONTENT'], ENT_QUOTES), $attr['XREF']); return; } $objattr = []; $objattr['CONTENT'] = htmlspecialchars_decode($attr['CONTENT'], ENT_QUOTES); $objattr['type'] = 'indexentry'; $objattr['vertical-align'] = 'T'; $e = "\xbb\xa4\xactype=indexentry,objattr=" . serialize($objattr) . "\xbb\xa4\xac"; if ($this->mpdf->tableLevel) { $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['textbuffer'][] = [$e]; } // *TABLES* else { // *TABLES* $this->mpdf->textbuffer[] = [$e]; } // *TABLES* } } public function close(&$ahtml, &$ihtml) { } }
Save