В начальной загрузке:
Zend_Controller_Action_HelperBroker::addPath(
'Path/To/Where/Your/Helper/Is',
'Path_To_Where_Your_Helper_Is'
);
В контроллере:
$this->_helper->myHelper();
Помощник будет выглядеть так:
class Path_To_Where_Your_Helper_Is_MyHelper extends Zend_Controller_Action_Helper_Abstract
{
public function direct()
{
echo 'Hello';
}
}