Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
23 | public function jqueryAction() |
||
24 | { |
||
25 | $this->view->assign('enabled', $this->configuration->isEnabled()); |
||
26 | $this->view->assign('options', $this->getOptionsAsJson()); |
||
27 | } |
||
28 | |||
29 | public function angularAction() |
||
30 | { |
||
31 | $this->view->assign('enabled', $this->configuration->isEnabled()); |
||
32 | $this->view->assign('options', $this->getOptionsAsJson()); |
||
33 | } |
||
34 | |||
49 |