1 | <?php |
||
11 | class SheetXml |
||
12 | { |
||
13 | /** @var string */ |
||
14 | private $xml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"; |
||
15 | /** @var string */ |
||
16 | private $urlOpenXmlFormat = 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'; |
||
17 | /** @var string */ |
||
18 | private $urlSchemaFormat = 'http://schemas.openxmlformats.org/officeDocument/2006'; |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getXml() |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getSheetPr() |
||
39 | |||
40 | /** |
||
41 | * @return string |
||
42 | */ |
||
43 | public function getWorksheet() |
||
49 | |||
50 | /** |
||
51 | * @param string $selectedTab |
||
52 | * |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getSheetViews($selectedTab) |
||
68 | |||
69 | /** |
||
70 | * @return string |
||
71 | */ |
||
72 | public function getCools() |
||
80 | |||
81 | /** |
||
82 | * @param string $maxCell |
||
83 | * |
||
84 | * @return string |
||
85 | */ |
||
86 | public function getDimension($maxCell) |
||
92 | |||
93 | /** |
||
94 | * @todo refactor |
||
95 | * |
||
96 | * @return string |
||
97 | */ |
||
98 | public function getHeaderFooter() |
||
107 | |||
108 | /** |
||
109 | * @return string |
||
110 | */ |
||
111 | public function getPageSetup() |
||
117 | |||
118 | /** |
||
119 | * @return string |
||
120 | */ |
||
121 | public function getPageMargins() |
||
125 | |||
126 | /** |
||
127 | * @return string |
||
128 | */ |
||
129 | public function getPrintOptions() |
||
134 | |||
135 | /** |
||
136 | * @param array $mergeCells |
||
137 | * |
||
138 | * @return string |
||
139 | */ |
||
140 | public function getMergeCells(array $mergeCells) |
||
150 | } |
||
151 |