| 1 | <?php |
||
| 10 | class ExcelExport extends RenderableComponent |
||
| 11 | { |
||
| 12 | private $baseName; |
||
| 13 | private $date; |
||
| 14 | private $config; |
||
| 15 | private $showId; |
||
| 16 | |||
| 17 | const NAME = 'excel_export'; |
||
| 18 | protected $template = '*.components.excel_export'; |
||
| 19 | |||
| 20 | const INPUT_PARAM = 'xlsx'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return mixed |
||
| 24 | */ |
||
| 25 | public function getDate() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return mixed |
||
| 32 | */ |
||
| 33 | public function getBaseName() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param mixed $baseName |
||
| 40 | */ |
||
| 41 | public function setBaseName($baseName) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @param mixed $date |
||
| 49 | */ |
||
| 50 | public function setDate($date) |
||
| 55 | |||
| 56 | public function initialize(Grid $grid) |
||
| 66 | } |