PowerKiKi /
mqueue
| 1 | <?php |
||
| 2 | |||
| 3 | use mQueue\Model\UserMapper; |
||
| 4 | |||
| 5 | class CssController extends Zend_Controller_Action |
||
| 6 | { |
||
| 7 | 1 | public function init(): void |
|
| 8 | { |
||
| 9 | 1 | $this->_helper->layout->disableLayout(); |
|
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 10 | 1 | $this->_helper->headers('text/css'); |
|
| 11 | 1 | } |
|
| 12 | |||
| 13 | 1 | public function gravatarCssAction(): void |
|
| 14 | { |
||
| 15 | 1 | $this->view->users = UserMapper::fetchAll(); |
|
| 16 | 1 | } |
|
| 17 | } |
||
| 18 |