PluginProbe
MBE eShip / trunk
MBE eShip vtrunk
2.8.1 trunk 1.0.0 1.1.0 1.1.3 1.2.1 1.2.2 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.6.0 1.7.0 1.7.1 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1.0 2.1.1 2.1.2 2.2.1 All 37 releases
mail-boxes-etc / lib / dompdf / src / Renderer / TableRowGroup.php

TableRowGroup.php in MBE eShip trunk, at lib/dompdf/src/Renderer/TableRowGroup.php

41 lines 848 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package dompdf
4 * @link https://github.com/dompdf/dompdf
5 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
6 */
7 namespace Dompdf\Renderer;
8
9 use Dompdf\Frame;
10
11 /**
12 * Renders block frames
13 *
14 * @package dompdf
15 */
16 class TableRowGroup extends Block
17 {
18
19 /**
20 * @param Frame $frame
21 */
22 function render(Frame $frame)
23 {
24 $style = $frame->get_style();
25
26 $this->_set_opacity($frame->get_opacity($style->opacity));
27
28 $border_box = $frame->get_border_box();
29
30 $this->_render_border($frame, $border_box);
31 $this->_render_outline($frame, $border_box);
32
33 $id = $frame->get_node()->getAttribute("id");
34 if (strlen($id) > 0) {
35 $this->_canvas->add_named_dest($id);
36 }
37
38 $this->debugBlockLayout($frame, "red");
39 }
40 }
41