getForm, ...) * @todo favicon * @todo sinnvolle Defaults, wenn system_config leer ist (globale Config BIND) * @todo sinnvolle Defaults, wenn system_config leer ist (Organisationsconfig BIND) * @todo Links zum Löschen für Zonen / Organisationen, Rechtechecks in ActionController (foreign key constraints beachten!) * @todo ConfigBIND left Menu geht nicht aus, wenn man die selektierte Org deaktiviert (init vor Action) * @todo Textausgabe, wenn Attribute aus Defaults initialisiert und NICHT aus der DB geladen wurden */ require_once('../library/global/defines.php'); try { /** Zend Autoloader */ require_once 'Zend/Loader/Autoloader.php'; Zend_Loader_Autoloader::getInstance(); // Create application, bootstrap, and run $application = new Zend_Application( APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini' ); /** override settings from application.ini, if necessary $fc = Zend_Controller_Front::getInstance(); $fc->setControllerDirectory(realpath(APPLICATION_PATH . '/controllers')); $fc->setParam('noViewRenderer', false); $fc->throwExceptions(true); $fc->setParam('noErrorHandler', false); */ $application->bootstrap() ->run(); } catch (Exception $e) { print "Exception: " . $e->getMessage() . "\n"; print $e->getTraceAsString() . "\n"; Log::Log()->emerg($e); }