i'm trying to migrate my cakephp apps to lithium, and already use Doctrine, and Twig as plugin, but now i'm also want to integrate Zend libraries into apps, and i have to integrate the Zend helper libraries.
I added the Zend library and ZendX on bootstrap, and i already can acessed the libraries in controller. But my problem is how to call helper like ZendX_JQuery_View_Helper_AjaxLink in view. So in view i can call like this :
<?php echo $this->ajaxLink("Show me something",
"/hello/world",
array('update' => '#content'));?>
it's possible to integrate those without touch anything in Zend Helper class?