jigen7 wrote:
>
> I really need help in creating my custom action helper i dont know where
> to start ,where to put the files, how to register it via application.ini
> if i put it to a custom folder as of zf 1.8 so i can call it directly to
> my controllers.
>
In your Bootstrap.php put this:
protected function _initActionHelpers()
{
Zend_Controller_Action_HelperBroker::addPath(APPLICATION_PATH."/controllers/helpers");
}
And your action helpers go in /application/controllers/helpers
--
View this message in context:
http://www.nabble.com/registering-action-helper-in-zf1.8-tp24049492p24062606.html
Sent from the Zend Framework mailing list archive at Nabble.com.