单独模块中的 Action_Helper 未加载

发布于 2024-11-26 18:32:41 字数 1883 浏览 3 评论 0原文

我关注了这篇很棒的文章 http://weierophinney.net/matthew/archives/246-Using-Action-Helpers-To-Implement-Re-Usable-Widgets.html,但目前我找不到工作我的简化示例。

问题 preDispatch 未加载

我创建了新模块 user (还有控制器 UserController,我希望这不会扰乱加载)。

我在用户中添加了两个文件。

Bootstrap.php - 在模块 user

class User_Bootstrap extends Zend_Application_Module_Bootstrap {

public function initResourceLoader() {
    $loader = $this->getResourceLoader();
    $loader->addResourceType('helper', 'helpers', 'Helper');
}

protected  function _initHelpers() {
    Zend_Controller_Action_HelperBroker::addHelper(
        new User_Helper_HandleLogin()
    );
}

下 /user/helpers 和 HandleLogin 类下的新文件夹。

class User_Helper_HandleLogin extends Zend_Controller_Action_Helper_Abstract {

protected $view;

public function preDispatch() {
    echo 'called';
    if (($controller = $this->getActionController()) === null) {
        return;
    }

    $this->createProfileWidget();
}

public function createProfileWidget() {
    if (!$view = $this->getView()) {
        return;
    }
    $view->user = '<h2>HELLO WORLD</h2>';
}

public function createLoginForm() {

}

public function getView() {
    if ($this->view !== null) {
        return $this->view;
    }

    $controller = $this->getActionController();
    $view = $controller->view;

    if (!$view instanceof Zend_View_Abstract) {
        return;
    }

    //$view->addScriptPath(dirname(__FILE__) .'/../views/scripts');
    $this->view = $view;
    return $view;
}

最后

将输出添加到layout.phtml 中。

<?php echo $this->user ?>

I followed this great article http://weierophinney.net/matthew/archives/246-Using-Action-Helpers-To-Implement-Re-Usable-Widgets.html, but currently i can't get work my simplified example.

PROBLEM The preDispatch does not get loaded.

I created new module user (there is also controller UserController, i hope this wont mess up the loading).

I have added two files in user.

Bootstrap.php - under module user

class User_Bootstrap extends Zend_Application_Module_Bootstrap {

public function initResourceLoader() {
    $loader = $this->getResourceLoader();
    $loader->addResourceType('helper', 'helpers', 'Helper');
}

protected  function _initHelpers() {
    Zend_Controller_Action_HelperBroker::addHelper(
        new User_Helper_HandleLogin()
    );
}

New folder under /user/helpers and class HandleLogin.

class User_Helper_HandleLogin extends Zend_Controller_Action_Helper_Abstract {

protected $view;

public function preDispatch() {
    echo 'called';
    if (($controller = $this->getActionController()) === null) {
        return;
    }

    $this->createProfileWidget();
}

public function createProfileWidget() {
    if (!$view = $this->getView()) {
        return;
    }
    $view->user = '<h2>HELLO WORLD</h2>';
}

public function createLoginForm() {

}

public function getView() {
    if ($this->view !== null) {
        return $this->view;
    }

    $controller = $this->getActionController();
    $view = $controller->view;

    if (!$view instanceof Zend_View_Abstract) {
        return;
    }

    //$view->addScriptPath(dirname(__FILE__) .'/../views/scripts');
    $this->view = $view;
    return $view;
}

}

And lastly added into layout.phtml the output.

<?php echo $this->user ?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是偏爱你 2024-12-03 18:32:41

User_Helper_HandleLogininit() 函数有效吗? User_Bootstrap 有效吗? :) 也许您忘记了 config.ini 中的 resources.modules[] =

is init() function of User_Helper_HandleLogin works? is User_Bootstrap works? :) maybe you forget resources.modules[] = in config.ini?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文