| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function execute() |
||
| 29 | { |
||
| 30 | $layout = $this->getViewModel(); |
||
| 31 | $layout->setTemplate($this->getTemplate()); |
||
| 32 | $layout->setTerminal(true); |
||
| 33 | |||
| 34 | $table = new ViewModel(); |
||
| 35 | $table->setTemplate('zfc-datagrid/renderer/printHtml/table'); |
||
| 36 | $table->setVariables($layout->getVariables()); |
||
| 37 | |||
| 38 | $layout->addChild($table, 'table'); |
||
| 39 | |||
| 40 | return $layout; |
||
| 41 | } |
||
| 42 | } |
||
| 43 |