| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 | <?php/** *  * Cube Framework $Id$ hdJu3rr7BgJDAVkYjTvYG/ZRNRdup1qDbnUhOCimuXM=  *  * @link        http://codecu.be/framework * @copyright   Copyright (c) 2014 CodeCube SRL * @license     http://codecu.be/framework/license Commercial License *  * @version     1.0 *//** * controller action helper abstract class */namespace Cube\Controller\Action\Helper;use Cube\Controller\Front,    Cube\Controller\Action\AbstractAction;abstract class AbstractHelper{    /**     *     * action object     *      * @var \Cube\Controller\Action\AbstractAction     */    protected $_action;    /**     *      * get action object     *      * @return \Cube\Controller\Action\AbstractAction     */    public function getAction()    {        return $this->_action;    }    /**     *      * set action object     *      * @param \Cube\Controller\Action\AbstractAction $action     * @return \Cube\Controller\Action\Helper\AbstractHelper     */    public function setAction(AbstractAction $action)    {        $this->_action = $action;        return $this;    }    /**     *      * get request object from action controller or front controller     *      * @return \Cube\Controller\Request\AbstractRequest     */    public function getRequest()    {        $action = $this->getAction();        if ($action === null) {            $action = Front::getInstance();        }        return $action->getRequest();    }    /**     *      * get response object from action controller or front controller     *      * @return \Cube\Controller\Response\ResponseInterface     */    public function getResponse()    {        $action = $this->getAction();        if ($action === null) {            $action = Front::getInstance();        }        return $action->getResponse();    }}
 |