Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function indexAction() |
||
20 | { |
||
21 | $this->di->session(); |
||
22 | |||
23 | $form = new \Anax\HTMLForm\CFormExample(); |
||
24 | $form->setDI($this->di); |
||
25 | $form->check(); |
||
26 | |||
27 | $this->di->theme->setTitle("Testing CForm with Anax"); |
||
28 | $this->di->views->add('default/page', [ |
||
29 | 'title' => "Try out a form using CForm", |
||
30 | 'content' => $form->getHTML() |
||
31 | ]); |
||
32 | } |
||
33 | } |
||
34 |