Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
27 / 27 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
TablePosition | |
100.00% |
27 / 27 |
|
100.00% |
1 / 1 |
6 | |
100.00% |
1 / 1 |
write | |
100.00% |
27 / 27 |
|
100.00% |
1 / 1 |
6 |
1 | <?php |
2 | |
3 | /** |
4 | * This file is part of PHPWord - A pure PHP library for reading and writing |
5 | * word processing documents. |
6 | * |
7 | * PHPWord is free software distributed under the terms of the GNU Lesser |
8 | * General Public License version 3 as published by the Free Software Foundation. |
9 | * |
10 | * For the full copyright and license information, please read the LICENSE |
11 | * file that was distributed with this source code. For the full list of |
12 | * contributors, visit https://github.com/PHPOffice/PHPWord/contributors. |
13 | * |
14 | * @see https://github.com/PHPOffice/PHPWord |
15 | * |
16 | * @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3 |
17 | */ |
18 | |
19 | namespace PhpOffice\PhpWord\Writer\Word2007\Style; |
20 | |
21 | /** |
22 | * TablePosition style writer. |
23 | */ |
24 | class TablePosition extends AbstractStyle |
25 | { |
26 | /** |
27 | * Write style. |
28 | */ |
29 | public function write(): void |
30 | { |
31 | $style = $this->getStyle(); |
32 | if (!$style instanceof \PhpOffice\PhpWord\Style\TablePosition) { |
33 | return; |
34 | } |
35 | |
36 | $values = []; |
37 | $properties = [ |
38 | 'leftFromText', |
39 | 'rightFromText', |
40 | 'topFromText', |
41 | 'bottomFromText', |
42 | 'vertAnchor', |
43 | 'horzAnchor', |
44 | 'tblpXSpec', |
45 | 'tblpX', |
46 | 'tblpYSpec', |
47 | 'tblpY', |
48 | ]; |
49 | foreach ($properties as $property) { |
50 | $method = 'get' . $property; |
51 | if (method_exists($style, $method)) { |
52 | $values[$property] = $style->$method(); |
53 | } |
54 | } |
55 | $values = array_filter($values); |
56 | |
57 | if ($values) { |
58 | $xmlWriter = $this->getXmlWriter(); |
59 | $xmlWriter->startElement('w:tblpPr'); |
60 | foreach ($values as $property => $value) { |
61 | $xmlWriter->writeAttribute('w:' . $property, $value); |
62 | } |
63 | $xmlWriter->endElement(); |
64 | } |
65 | } |
66 | } |