commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / vendor / dompdf / dompdf / src / Positioner / TableCell.php
1 <?php
2 /**
3 * @package dompdf
4 * @link http://dompdf.github.com/
5 * @author Benj Carson <benjcarson@digitaljunkies.ca>
6 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7 */
8
9 namespace Dompdf\Positioner;
10
11 use Dompdf\FrameDecorator\AbstractFrameDecorator;
12 use Dompdf\FrameDecorator\Table;
13
14 /**
15 * Positions table cells
16 *
17 * @package dompdf
18 */
19 class TableCell extends AbstractPositioner
20 {
21
22 function __construct(AbstractFrameDecorator $frame)
23 {
24 parent::__construct($frame);
25 }
26
27 //........................................................................
28
29 function position()
30 {
31
32 $table = Table::find_parent_table($this->_frame);
33 $cellmap = $table->get_cellmap();
34 $this->_frame->set_position($cellmap->get_frame_position($this->_frame));
35
36 }
37 }