Lines Matching refs:tag

12 		$tag = $this->getTagName();
42 if (!isset($this->mpdf->InlineProperties[$tag])) {
43 $this->mpdf->InlineProperties[$tag] = [$this->mpdf->saveInlineProperties()];
45 $this->mpdf->InlineProperties[$tag][] = $this->mpdf->saveInlineProperties();
48 if (!isset($this->mpdf->InlineAnnots[$tag])) {
49 $this->mpdf->InlineAnnots[$tag] = [];
51 $this->mpdf->InlineAnnots[$tag][] = $annot;
54 $properties = $this->cssManager->MergeCSS('INLINE', $tag, $attr);
83 if ($tag === 'BDO') {
92 } elseif ($tag === 'BDI') {
159 if (!isset($this->mpdf->InlineBDF[$tag])) {
160 $this->mpdf->InlineBDF[$tag] = [[$popd, $this->mpdf->InlineBDFctr]];
162 $this->mpdf->InlineBDF[$tag][] = [$popd, $this->mpdf->InlineBDFctr];
180 $tag = $this->getTagName();
186 if ($tag === 'PROGRESS' || $tag === 'METER') {
187 if (!empty($this->mpdf->InlineProperties[$tag])) {
188 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
190 unset($this->mpdf->InlineProperties[$tag]);
191 if (!empty($this->mpdf->InlineAnnots[$tag])) {
192 $annot = $this->mpdf->InlineAnnots[$tag];
194 unset($this->mpdf->InlineAnnots[$tag]); // *ANNOTATIONS*
196 if (isset($this->mpdf->InlineProperties[$tag]) && count($this->mpdf->InlineProperties[$tag])) {
197 $tmpProps = array_pop($this->mpdf->InlineProperties[$tag]); // mPDF 5.7.4
200 if (isset($this->mpdf->InlineAnnots[$tag]) && count($this->mpdf->InlineAnnots[$tag])) { // *ANNOTATIONS*
201 $annot = array_pop($this->mpdf->InlineAnnots[$tag]); // *ANNOTATIONS*
203 if (isset($this->mpdf->InlineBDF[$tag]) && count($this->mpdf->InlineBDF[$tag])) { // mPDF 6
204 $bdfarr = array_pop($this->mpdf->InlineBDF[$tag]);