ok
Direktori : /proc/self/root/home2/selectio/www/limpiar.in.net/vendor/mpdf/mpdf/src/Tag/ |
Current File : //proc/self/root/home2/selectio/www/limpiar.in.net/vendor/mpdf/mpdf/src/Tag/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) { } }