| 1 | <?php |
||
| 5 | class ExcelFormat extends Format |
||
| 6 | { |
||
| 7 | private $headerinfirstrow = true; |
||
| 8 | private $activesheet = null; |
||
| 9 | private $exceltype = 'Excel2007'; |
||
| 10 | |||
| 11 | protected $name = 'Excel File'; |
||
| 12 | protected $id = 'excel'; |
||
| 13 | |||
| 14 | 6 | public function __construct($headerinfirstrow = true) |
|
| 18 | |||
| 19 | 4 | public function isHeaderInFirstRow() |
|
| 23 | |||
| 24 | 4 | public function getActivesheet() |
|
| 28 | |||
| 29 | 2 | public function getExceltype() |
|
| 33 | } |
||
| 34 |