Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3212526
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T14:50:50+00:00 2026-05-17T14:50:50+00:00

I wrote a plugin that needs to set a property on the controller that’s

  • 0

I wrote a plugin that needs to set a property on the controller that’s currently being dispatched. For example, if my plugin is:

class Application_Plugin_Foo extends Zend_Controller_Plugin_Abstract
{
    public function dispatchLoopStartup(Zend_Controller_Request_Abstract $request)
    {
        // Get an instance of the current controller and inject the $foo property
        // ???->foo = 'foo';
    }
}

I want to be able to do this:

class IndexController extends Zend_Controller_Action
{
    public function indexAction()
        {
            $this->view->foo = $this->foo;
        }
    }
}

Any help is greatly appreciated!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T14:50:50+00:00Added an answer on May 17, 2026 at 2:50 pm

    The action controller is not directly accessible directly from a front-controller plugin. It’s the dispatcher that instantiates the controller object and he doesn’t appear to save it anywhere accessible.

    However, the controller is accessible from any registered action helpers. Since action helpers have a preDispatch hook, you could do your injection there.

    So, in library/My/Controller/Helper/Inject.php:

    class My_Controller_Helper_Inject extends Zend_Controller_Action_Helper_Abstract
    {
        public function preDispatch()
        {
            $controller = $this->getActionController();
            $controller->myParamName = 'My param value';
        }
    }
    

    Then register an instance of the helper in application/Bootstrap.php:

    protected function _initControllerInject()
    {
        Zend_Controller_Action_HelperBroker::addHelper(
            new My_Controller_Helper_Inject()
        );
    }
    

    And, as always, be sure to include My_ as an autoloader namespace in configs/application.ini:

    autoloaderNamespaces[] = "My_"
    

    Then, in the controller, access the value directly as a public member variable:

    public function myAction()
    {
        var_dump($this->myParamName);
    }
    

    One thing to note: Since the helper uses the preDispatch() hook, I believe it will get called on every action, even an internal forward().

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to write a plugin that does something with the currently edited file
I'm looking to write a plugin for IE that will do a little parsing
I've got a plugin I wrote for wordpress and I need to have the
I'm going to need to integrate a Java application that I wrote with a
I would like to write a plug-in that will allow a custom written CRM
I'm trying to write a Wordpress plug-in that automatically posts a blog post at
My application has a plug-in model that allows third-party developers to write assemblies that
I'm writing an app where 3rd party vendors can write plugin DLLs and drop
My experience to write a plugin for Firefox is below zero. Is someone out
Could someone write-up a step by step guide to developing a C++ based plugin

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.