30 lines
No EOL
549 B
PHP
30 lines
No EOL
549 B
PHP
<?php
|
|
/**
|
|
* Bootstrap this shit
|
|
*/
|
|
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
|
|
{
|
|
/**
|
|
* Setup view object
|
|
*
|
|
* return Zend_View $view
|
|
*/
|
|
protected function _initView()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Configure the front controller
|
|
*/
|
|
protected function _initFront()
|
|
{
|
|
// Get front controller
|
|
$frontController = Zend_Controller_Front::getInstance();
|
|
|
|
// Set modules directory
|
|
$frontController->addModuleDirectory(APPLICATION_PATH . '/modules');
|
|
|
|
}
|
|
|
|
} |