Lines Matching refs:table

32 		if ($this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['nc'] < $this->mpdf->col + 1) {
33 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['nc'] = $this->mpdf->col + 1;
36 $table = &$this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]];
50 $table['simple']['border'] = false;
51 $table['simple']['border_details']['R']['w'] = 0;
52 $table['simple']['border_details']['L']['w'] = 0;
53 $table['simple']['border_details']['T']['w'] = 0;
54 $table['simple']['border_details']['B']['w'] = 0;
55 $table['simple']['border_details']['R']['style'] = '';
56 $table['simple']['border_details']['L']['style'] = '';
57 $table['simple']['border_details']['T']['style'] = '';
58 $table['simple']['border_details']['B']['style'] = '';
93 if ($table['va']) {
94 $c['va'] = $table['va'];
97 if ($table['txta']) {
98 $c['a'] = $table['txta'];
101 if ($this->mpdf->table_border_attr_set && $table['border_details']) {
104 $c['border_details']['R'] = $table['border_details']['R'];
105 $c['border_details']['L'] = $table['border_details']['L'];
106 $c['border_details']['T'] = $table['border_details']['T'];
107 $c['border_details']['B'] = $table['border_details']['B'];
108 $c['border'] = $table['border'];
114 $table['simple']['border_details']['R'] = $table['border_details']['R'];
115 $table['simple']['border_details']['L'] = $table['border_details']['L'];
116 $table['simple']['border_details']['T'] = $table['border_details']['T'];
117 $table['simple']['border_details']['B'] = $table['border_details']['B'];
118 $table['simple']['border'] = $table['border'];
242 $c['direction'] = $table['direction'];
258 $c['cellLineHeight'] = $table['cellLineHeight'];
263 $c['cellLineStackingStrategy'] = $table['cellLineStackingStrategy'];
268 $c['cellLineStackingShift'] = $table['cellLineStackingShift'];
290 $table['simple']['border'] = Border::ALL;
291 $table['simple']['border_details']['R'] = $bord;
292 $table['simple']['border_details']['L'] = $bord;
293 $table['simple']['border_details']['T'] = $bord;
294 $table['simple']['border_details']['B'] = $bord;
323 $table['simple']['border'] = Border::ALL;
325 $table['simple']['border'] = 0;
327 $table['simple']['border_details']['R'] = $bord;
328 $table['simple']['border_details']['L'] = $bord;
329 $table['simple']['border_details']['T'] = $bord;
330 $table['simple']['border_details']['B'] = $bord;
334 if ($this->mpdf->simpleTables && $this->mpdf->row == 0 && $this->mpdf->col == 0 && !$table['borders_separate'] && $table['simple']['border']) {
335 $table['border_details'] = $table['simple']['border_details'];
336 $table['border'] = $table['simple']['border'];
340 if (!$table['borders_separate'] && !$this->mpdf->simpleTables && isset($table['trborder-left'][$this->mpdf->row])) {
342 $left = $this->mpdf->border_details($table['trborder-left'][$this->mpdf->row]);
346 $c['border_details']['B'] = $this->mpdf->border_details($table['trborder-bottom'][$this->mpdf->row]);
348 $c['border_details']['T'] = $this->mpdf->border_details($table['trborder-top'][$this->mpdf->row]);
413 if ($this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['nc'] < $this->mpdf->col + $cs) {
414 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['nc'] = $this->mpdf->col + $cs;
434 unset($table);
467 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['is_thead'][$this->mpdf->row] = true;
469 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['headernrows']
470 = max($this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['headernrows'], $this->mpdf->row + 1);
474 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['is_tfoot'][$this->mpdf->row] = true;
476 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['footernrows']
478 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['footernrows'],
479 $this->mpdf->row + 1 - $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['headernrows']