Login
Remember
Register
Ask a Question
What is Front Controller in the Zend framework?
0
votes
asked
Apr 22, 2022
in
Zend Framework
by
sharadyadav1986
What is Front Controller in the Zend framework?
front-controller
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Apr 22, 2022
by
sharadyadav1986
Following are the
front controller
in the
Zend Framework
:
routeStartup: This function is called before Zend_Controller_Front calls on the router to evaluate the request.
routeShutdown: This function is called after the router finishes routing the request.
preDispatch: It is called before the dispatcher dispatches an action.
dispatchLoopStartup: It is used before enters of Zend_Controller_Front.
postDispatch: It is called after the dispatcher dispatches an action.
...