tags:

views:

118

answers:

2

Can I access my action helpers from my models? What am avoiding is creating new models and calling the functions everytime I need some functionality.

Any tips?

A: 

What about: Zend_Controller_Action_HelperBroker::getStaticHelper('helpername')->doStuff();

Danila V.
Do I call the helper $this->_helper->getuseremail(); in my controllers.How will this example apply in my models?
davykiash
Thanks.It lead me to the correct solution and posted the link
davykiash
A: 

After a few searches this lead me to the correct solution.

davykiash