Subversion Repositories Applications.annuaire

Rev

Rev 208 | Rev 320 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 208 Rev 310
Line 11... Line 11...
11
* @link      /doc/annuaire/
11
* @link      /doc/annuaire/
12
*/
12
*/
Line 13... Line 13...
13
 
13
 
14
// La fonction autolad doit être appelée avant tout autre chose dans l'application.
14
// La fonction autolad doit être appelée avant tout autre chose dans l'application.
15
// Sinon, rien ne sera chargé.
15
// Sinon, rien ne sera chargé.
16
require_once '/home/aurelien/web/framework/framework/autoload.inc.php';
16
require_once 'framework/framework/autoload.inc.php';
17
Application::setChemin(__FILE__);
17
Application::setChemin(__FILE__);
18
Application::setInfo(Config::get('info'));
18
Application::setInfo(Config::get('info'));
19
mb_internal_encoding(Config::get('appli_encodage'));
19
mb_internal_encoding(Config::get('appli_encodage'));
Line 20... Line 20...
20
date_default_timezone_set(Config::get('fw_timezone'));
20
date_default_timezone_set(Config::get('fw_timezone'));
21
 
21
 
22
// Autoload pour cette application
22
// Autoload pour cette application
23
function __autoload($nom_classe) {
23
function __autoload($nom_classe) {
-
 
24
    // Tableau des chemins à inclure pour trouver une classe relative à ce fichier
24
    // Tableau des chemins à inclure pour trouver une classe relative à ce fichier
25
    $chemins = array(
25
    $chemins = array(
26
    	'plugins',
26
        'composants',
27
        'composants',
27
        'composants'.DS.'cartographie',
28
        'composants'.DS.'cartographie',
28
        'composants'.DS.'openid');
29
        'composants'.DS.'openid');
Line 34... Line 35...
34
            return null;
35
            return null;
35
        }
36
        }
36
    }
37
    }
37
}
38
}
Line 38... Line 39...
38
 
39
 
39
?>
40
?>