vote up 0 vote down star

hi all, i am writing an action helper and i need to call another action helper from within that helper. but i dont know how. here in the sample code:

class Common_Controller_Action_Helper_SAMPLE extends Zend_Controller_Action_Helper_Abstract
{
    protected $_view;
    public function __construct(Zend_View_Interface $view = null, array $options = array())
    {
    	$this->_view = $view;
    }

    public function preDispatch()
    {
        $flashMessenger = $this->_helper->FlashMessenger; // IT IS NULL
    }
}
flag

73% accept rate

4 Answers

vote up 3 vote down check

Use the action helper broker:

$flashMessenger =
    Zend_Controller_Action_HelperBroker::getStaticHelper('FlashMessenger');
link|flag
it worked great. :) – rahim asgari Jul 12 at 20:32
vote up 0 vote down

now i want to pass a varibale from within this helper to the veiw. ($this->view = 'something') how can i do that?

link|flag
1  
Following your own code: $this->_view->variable = 'something'; That then becomes available in the view as $this->variable... – mercator Jul 12 at 23:40
vote up 0 vote down

You can also use getActionController to get a reference back to the actioncontroller you were using for any methods you'd normally use there.

link|flag
vote up 0 vote down

Hi!! you can call it in that way

$this->_actionController->OtherActionHelper();

the "_actionController" property references the actual action controller

Bye

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.