Home
last modified time | relevance | path

Searched refs:InlineProperties (Results 1 – 16 of 16) sorted by relevance

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DA.php33 $this->mpdf->InlineProperties['A'] = $this->mpdf->saveInlineProperties();
45 if (isset($this->mpdf->InlineProperties['A'])) {
46 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties['A']);
48 unset($this->mpdf->InlineProperties['A']);
H A DInlineTag.php42 if (!isset($this->mpdf->InlineProperties[$tag])) {
43 $this->mpdf->InlineProperties[$tag] = [$this->mpdf->saveInlineProperties()];
45 $this->mpdf->InlineProperties[$tag][] = $this->mpdf->saveInlineProperties();
187 if (!empty($this->mpdf->InlineProperties[$tag])) {
188 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
190 unset($this->mpdf->InlineProperties[$tag]);
196 if (isset($this->mpdf->InlineProperties[$tag]) && count($this->mpdf->InlineProperties[$tag])) {
197 $tmpProps = array_pop($this->mpdf->InlineProperties[$tag]); // mPDF 5.7.4
H A DLegend.php12 $this->mpdf->InlineProperties['LEGEND'] = $this->mpdf->saveInlineProperties();
29 if (isset($this->mpdf->InlineProperties['LEGEND'])) {
30 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties['LEGEND']);
32 unset($this->mpdf->InlineProperties['LEGEND']);
H A DSubstituteTag.php11 if ($this->mpdf->InlineProperties[$tag]) {
12 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
14 unset($this->mpdf->InlineProperties[$tag]);
H A DTextArea.php62 $this->mpdf->InlineProperties['TEXTAREA'] = $this->mpdf->saveInlineProperties();
157 if ($this->mpdf->InlineProperties['TEXTAREA']) {
158 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties['TEXTAREA']);
160 unset($this->mpdf->InlineProperties['TEXTAREA']);
H A DSelect.php13 $this->mpdf->InlineProperties['SELECT'] = $this->mpdf->saveInlineProperties();
149 if ($this->mpdf->InlineProperties['SELECT']) {
150 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties['SELECT']);
152 unset($this->mpdf->InlineProperties['SELECT']);
H A DInput.php66 $this->mpdf->InlineProperties['INPUT'] = $this->mpdf->saveInlineProperties();
117 if ($this->mpdf->InlineProperties[$tag]) {
118 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
120 unset($this->mpdf->InlineProperties[$tag]);
416 if ($this->mpdf->InlineProperties[$tag]) {
417 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
419 unset($this->mpdf->InlineProperties[$tag]);
H A DTextCircle.php34 $this->mpdf->InlineProperties['TEXTCIRCLE'] = $this->mpdf->saveInlineProperties();
241 if ($this->mpdf->InlineProperties['TEXTCIRCLE']) {
242 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties['TEXTCIRCLE']);
244 unset($this->mpdf->InlineProperties['TEXTCIRCLE']);
H A DTts.php11 $this->mpdf->InlineProperties['TTS'] = $this->mpdf->saveInlineProperties();
H A DTtz.php11 $this->mpdf->InlineProperties['TTZ'] = $this->mpdf->saveInlineProperties();
H A DTta.php11 $this->mpdf->InlineProperties['TTA'] = $this->mpdf->saveInlineProperties();
H A DFormFeed.php27 $save_ilp = $this->mpdf->InlineProperties;
284 $this->mpdf->InlineProperties = $save_ilp;
H A DBlockTag.php109 $this->mpdf->InlineProperties = [];
131 $this->mpdf->InlineProperties['BLOCKINTABLE'] = $this->mpdf->saveInlineProperties();
388 $currblk['InlineProperties'] = $this->mpdf->saveInlineProperties();
1028 if (isset($this->mpdf->InlineProperties['BLOCKINTABLE'])) {
1029 if ($this->mpdf->InlineProperties['BLOCKINTABLE']) {
1030 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties['BLOCKINTABLE']);
1032 unset($this->mpdf->InlineProperties['BLOCKINTABLE']);
1297 if (isset($this->mpdf->blk[$this->mpdf->blklvl]['InlineProperties'])) {
1298 $this->mpdf->restoreInlineProperties($this->mpdf->blk[$this->mpdf->blklvl]['InlineProperties']);
1307 $save_ilp = $this->mpdf->InlineProperties;
[all...]
H A DTd.php21 $this->mpdf->InlineProperties = [];
H A DTable.php120 $this->mpdf->InlineProperties = [];
1210 if (isset($this->mpdf->blk[$this->mpdf->blklvl]['InlineProperties'])) {
1211 $this->mpdf->restoreInlineProperties($this->mpdf->blk[$this->mpdf->blklvl]['InlineProperties']);
1218 $save_ilp = $this->mpdf->InlineProperties;
1242 $this->mpdf->InlineProperties = $save_ilp;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php393 var $InlineProperties;
1192 $this->InlineProperties = [];
6689 $ti = $this->sizeConverter->convert($this->blk[$this->blklvl]['text_indent'], $this->blk[$this->blklvl]['inner_width'], $this->blk[$this->blklvl]['InlineProperties']['size'], false); // mPDF 5.7.4
6890 $ti = $this->sizeConverter->convert($this->blk[$this->blklvl]['text_indent'], $this->blk[$this->blklvl]['inner_width'], $this->blk[$this->blklvl]['InlineProperties']['size'], false); // mPDF 5.7.4
7931 $ti = $this->sizeConverter->convert($this->blk[$this->blklvl]['text_indent'], $this->blk[$this->blklvl]['inner_width'], $this->blk[$this->blklvl]['InlineProperties']['size'], false); // mPDF 5.7.4
8522 $ti = $this->sizeConverter->convert($this->blk[$this->blklvl]['text_indent'], $this->blk[$this->blklvl]['inner_width'], $this->blk[$this->blklvl]['InlineProperties']['size'], false); // mPDF 5.7.4
11137 $fontsize = $this->blk[$this->blklvl]['InlineProperties']['size'];
11138 $fontkey = $this->blk[$this->blklvl]['InlineProperties']['family'] . $this->blk[$this->blklvl]['InlineProperties']['style'];
13247 $this->blk[0]['InlineProperties']
399 var $InlineProperties; global() variable in Mpdf\\Mpdf
[all...]