PowerKiKi /
mqueue
| 1 | <?php |
||
| 2 | |||
| 3 | class JsController extends Zend_Controller_Action |
||
| 4 | { |
||
| 5 | 2 | public function init(): void |
|
| 6 | { |
||
| 7 | 2 | $this->_helper->layout->disableLayout(); |
|
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 8 | 2 | $this->_helper->headers('application/javascript'); |
|
| 9 | 2 | } |
|
| 10 | |||
| 11 | 1 | public function remoteJsAction(): void |
|
| 12 | { |
||
| 13 | // action body |
||
| 14 | 1 | } |
|
| 15 | |||
| 16 | 1 | public function mqueueUserJsAction(): void |
|
| 17 | { |
||
| 18 | // action body |
||
| 19 | 1 | } |
|
| 20 | } |
||
| 21 |