| 1 | <?php |
||
| 11 | class AbstractController extends Zend_Controller_Action |
||
| 12 | { |
||
| 13 | protected $container; |
||
| 14 | |||
| 15 | public function init() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param $key |
||
| 22 | * @return mixed |
||
| 23 | */ |
||
| 24 | public function getContainerObject($key) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * |
||
| 31 | */ |
||
| 32 | public function sendJSONResponse(array $array) |
||
| 39 | |||
| 40 | public function getIdentity() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return Zend_Controller_Request_Http |
||
| 50 | */ |
||
| 51 | public function getRequest() |
||
| 55 | } |