View Single Post
  #2 (permalink)  
Old 03-05-2008, 04:32 PM
xentek's Avatar
xentek xentek is offline
Senior Member
 
Join Date: Feb 2008
Posts: 112
Default

Zend_Controller_Action::$_frontController

This is a private member variable, and you won't really ever need to do anything with it. Its used internally by the class. Most of these store metadata of some kind. Use a debugger to step through the code if you're ever interested to see what kind of data it gets populated with.

Your action controllers will most likely never need to worry about the frontController, as it is just used to route the requests to your controllers, but never the other way round.

More info: P of EAA: Front Controller
Reply With Quote