Your Bootstrap class defines what resources and components to
initialize. By default, Zend Framework's Front
Controller is initialized, and it uses the
application/controllers/ as the default directory in which to look
for action controllers (more on that later). The class looks like the following:
// application/Bootstrap.php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
}
As you can see, not much is necessary to begin with.




