Lines Matching refs:mpdf

14 				$this->mpdf->ClearFloats(strtoupper($properties['CLEAR']), $this->mpdf->blklvl);
24 if (isset($this->mpdf->blk[$this->mpdf->blklvl]['bidicode'])) {
25 $blockpre = $this->mpdf->_setBidiCodes('end', $this->mpdf->blk[$this->mpdf->blklvl]['bidicode']);
26 $blockpost = $this->mpdf->_setBidiCodes('start', $this->mpdf->blk[$this->mpdf->blklvl]['bidicode']);
35 if (count($this->mpdf->InlineBDF)) {
36 foreach ($this->mpdf->InlineBDF as $k => $ib) {
44 $inlinepre .= $this->mpdf->_setBidiCodes('end', $iBDF[$i]);
47 $inlinepost .= $this->mpdf->_setBidiCodes('start', $iBDF[$i]);
53 if ($this->mpdf->tableLevel) {
54 if ($this->mpdf->blockjustfinished) {
55 $this->mpdf->_saveCellTextBuffer($blockpre . $inlinepre . "\n" . $inlinepost . $blockpost);
58 $this->mpdf->_saveCellTextBuffer($blockpre . $inlinepre . "\n" . $inlinepost . $blockpost);
59 if (!isset($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'])) {
60 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
61 } elseif ($this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] < $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s']) {
62 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['maxs'] = $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'];
64 $this->mpdf->cell[$this->mpdf->row][$this->mpdf->col]['s'] = 0; // reset
67 if (count($this->mpdf->textbuffer)) {
68 $this->mpdf->textbuffer[count($this->mpdf->textbuffer) - 1][0] = preg_replace(
71 $this->mpdf->textbuffer[count($this->mpdf->textbuffer) - 1][0]
73 if (!empty($this->mpdf->textbuffer[count($this->mpdf->textbuffer) - 1][18])) {
74 $this->otl->trimOTLdata($this->mpdf->textbuffer[count($this->mpdf->textbuffer) - 1][18], false);
77 $this->mpdf->_saveTextBuffer($blockpre . $inlinepre . "\n" . $inlinepost . $blockpost);
79 $this->mpdf->ignorefollowingspaces = true;
80 $this->mpdf->blockjustfinished = false;
82 $this->mpdf->linebreakjustfinished = true;