Knowledge Base

How to Call view file using action function in Zend Framework

  Generally in zend framework,we can call file using render function,but in render function we can not pass parameter.we can use action function to call file with paramater. here you can find example that how can we call any file

Read More

How to Make Plugin in Zend Framework

Sample File class PluginName extends Zend_Controller_Plugin_Abstract { public function routeStartup(Zend_Controller_Request_Abstract $request) { } public function routeShutdown(Zend_Controller_Request_Abstract $request) { } public function dispatchLoopStartup(Zend_Controller_Request_Abstract $request) { } public function preDispatch(Zend_Controller_Request_Abstract $request) { } public function postDispatch(Zend_Controller_Request_Abstract $request) { } public function dispatchLoopShutdown()

Read More

What is View Rendering in Zend Framework and how to use it ?

View Rendering is a technique which provide us to  Access Another View Script functionality  .  it can be use when we write common logic that would use for different Controller Step 1. first Add Path of that file which you

Read More