2 /* This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
3 and is published under the AGPL license. */
5 class Bootstrap extends Zend_Application_Bootstrap_Bootstrap {
6 protected static $libns = array('gisconverter', 'phptojs', 'pwdgen');
8 public function _bootstrap($resource = null) {
9 $autoloader = Zend_Loader_Autoloader::getInstance();
10 foreach (self::$libns as $namespace) {
11 $autoloader->pushAutoloader(array($this, 'syj_autoload'), array($namespace, 'Syj_'));
14 parent::_bootstrap($resource);
17 public function run() {
18 $sessionConfig = new Zend_Config_Ini(APPLICATION_PATH . '/configs/session.ini', APPLICATION_ENV);
19 Zend_Session::setOptions($sessionConfig->toArray());
20 Zend_Controller_Action_HelperBroker::getStaticHelper('ViewRenderer')->initView(APPLICATION_PATH . '/views/', 'Syj_View');
25 static public function syj_autoload($class) {
26 foreach (self::$libns as $namespace) {
27 if (strpos ($class, $namespace) === 0) {
28 include_once ($namespace . ".php");
33 if (strpos ($class, "Syj_") === 0) {
34 $segments = explode ('_', $class);
36 if (count($segments) < 3) {
41 if (strtolower(end($segments)) == "interface") {
46 $dirpath = implode(DIRECTORY_SEPARATOR, array_map('strtolower', array_slice($segments, 1, -1)));
48 $dirpath = "interface" . DIRECTORY_SEPARATOR . $dirpath;
50 $filename = APPLICATION_PATH . '/' . ($dirpath ? $dirpath . '/' : '') . end($segments) . '.php';
51 if (Zend_Loader::isReadable($filename)) {
52 include_once $filename;