Escribo un action helper y necesito llamar a otro action helper desde ese helper. pero no sé cómo. aquí en el código de ejemplo:zend-framework, llama a un ayudante de acción desde otro action helper
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
}
}
funcionó muy bien. :) –