Получение помощника действия jqgrid для работы - PullRequest
0 голосов
/ 30 января 2010

После нескольких поисков я наткнулся на jqgrid action helper , который я мог бы включить в свой Zend MVC. Однако после загрузки исходного кода и попытки его использования я получаю эту ошибку

Fatal error: Call to a member function getActionController() on a non-object in
.....
\Controller\Action\HelperBroker.php on line 299

Вот выдержка из помощника

class My_Helper_jqgrid extends Zend_Controller_Action_Helper_Abstract {
    /**
     * Instance of the config file.
     *
     * @var Zend_Config_Ini
     */
    protected $_config = null;

    /**
     * The instance of the database
     *
     * @var Zend_Db_Adapter_Abstract
     */
    protected $_db = null;

    /**
     * The provided view
     * 
     * @var Zend_View_Interface
     */
    protected $_view = null;

    /**
     * The options provided to this helper
     * 
     * @var array
     */
    protected $_options = array();

    /**
     * @var Zend_Loader_PluginLoader
     */
    public $_pluginLoader;  

    public function __construct(Zend_View_Interface $view = null, array $options = array()){
        //$this->_db = Zend_Registry::getInstance()->get("db");         
        $this->_db = 'mato';            
        $this->_pluginLoader = new Zend_Loader_PluginLoader();
        $this->_view = $view;           
        $this->_options = $options;             
    }

    /**
     * Strategy pattern: call helper as broker method
     * 
     * @param string | Zend_Db_Table_Select $sql
     * @param string | array $columns
     */
    public function direct($sql, $columns = "*", $tableId = "id", array $options = array()) {

        Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer')->setNoRender();
        Zend_Controller_Action_HelperBroker::getStaticHelper('layout')->disableLayout();

        $this->_options = $options;     
        $page = $this->getRequest()->getParam("page", 1); // get the requested page 
        $rows = $this->getRequest()->getParam("rows", 20); // get how many rows we want to have into the grid 
        $sidx = $this->getRequest()->getParam("sidx", $tableId); // get index row - i.e. user click to sort 
        $sord = $this->getRequest()->getParam("sord", "asc") == "desc" ? "DESC" : "ASC"; // get the direction
        $response = new stdClass(); // The response object which will be translated into a json object
        ...............
        ................
        return json_encode($response);      
    }   
}

В моем контроллере

print $this->_helper->Jqgrid("SELECT * FROM artist", 
        array("artist_code","artist_name","artist_album"), "id");

В моей начальной загрузке

Zend_Controller_Action_HelperBroker::addPath(
        APPLICATION_PATH . "/controllers/helpers", "My_Helper");

Что мне не хватает?

1 Ответ

0 голосов
/ 03 февраля 2010

Проверьте это: http://zendframework.com/issues/browse/ZF-7027

Я только что погуглил по вашей ошибке, поэтому не уверен, что ссылка выше применима.

...