Lines Matching refs:p

19 		$p = []; // mPDF 6
20 $p['L'] = [];
21 $p['C'] = [];
22 $p['R'] = [];
23 $p['L']['font-style'] = '';
24 $p['C']['font-style'] = '';
25 $p['R']['font-style'] = '';
28 $p['L']['content'] = $attr['CONTENT-LEFT'];
31 $p['C']['content'] = $attr['CONTENT-CENTER'];
34 $p['R']['content'] = $attr['CONTENT-RIGHT'];
44 $p['L']['font-family'] = $properties['FONT-FAMILY'];
45 $p['C']['font-family'] = $properties['FONT-FAMILY'];
46 $p['R']['font-family'] = $properties['FONT-FAMILY'];
49 $p['L']['font-size'] = $this->sizeConverter->convert($properties['FONT-SIZE']) * Mpdf::SCALE;
50 $p['C']['font-size'] = $this->sizeConverter->convert($properties['FONT-SIZE']) * Mpdf::SCALE;
51 $p['R']['font-size'] = $this->sizeConverter->convert($properties['FONT-SIZE']) * Mpdf::SCALE;
54 $p['L']['font-style'] = 'B';
55 $p['C']['font-style'] = 'B';
56 $p['R']['font-style'] = 'B';
59 $p['L']['font-style'] .= 'I';
60 $p['C']['font-style'] .= 'I';
61 $p['R']['font-style'] .= 'I';
64 $p['L']['color'] = $properties['COLOR'];
65 $p['C']['color'] = $properties['COLOR'];
66 $p['R']['color'] = $properties['COLOR'];
76 $p['L']['font-family'] = $properties['FONT-FAMILY'];
79 $p['L']['font-size'] = $this->sizeConverter->convert($properties['FONT-SIZE']) * Mpdf::SCALE;
82 $p['L']['font-style'] = 'B';
85 $p['L']['font-style'] .='I';
88 $p['L']['color'] = $properties['COLOR'];
98 $p['C']['font-family'] = $properties['FONT-FAMILY'];
101 $p['C']['font-size'] = $this->sizeConverter->convert($properties['FONT-SIZE']) * Mpdf::SCALE;
104 $p['C']['font-style'] = 'B';
107 $p['C']['font-style'] .= 'I';
110 $p['C']['color'] = $properties['COLOR'];
120 $p['R']['font-family'] = $properties['FONT-FAMILY'];
123 $p['R']['font-size'] = $this->sizeConverter->convert($properties['FONT-SIZE']) * Mpdf::SCALE;
126 $p['R']['font-style'] = 'B';
129 $p['R']['font-style'] .= 'I';
132 $p['R']['color'] = $properties['COLOR'];
140 $p['line'] = $lineset;
144 $this->mpdf->DefHeaderByName($pname, $p);
146 $this->mpdf->DefFooterByName($pname, $p);