Subversion Repositories Applications.annuaire

Rev

Rev 320 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
68 aurelien 1
<?php
2
/**
3
* PHP Version 5
4
*
5
* @category  PHP
6
* @package   annuaire
7
* @author    aurelien <aurelien@tela-botanica.org>
8
* @copyright 2010 Tela-Botanica
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
11
* @link      /doc/annuaire/
12
*/
13
 
14
// La fonction autolad doit être appelée avant tout autre chose dans l'application.
15
// Sinon, rien ne sera chargé.
414 raphael 16
// possibilité:
17
// $ ln -s ~/framework/branches/v0.2-buhl/framework/autoload.inc.php framework.php
320 aurelien 18
require_once 'framework.php';
68 aurelien 19
Application::setChemin(__FILE__);
20
Application::setInfo(Config::get('info'));
21
mb_internal_encoding(Config::get('appli_encodage'));
115 aurelien 22
date_default_timezone_set(Config::get('fw_timezone'));
68 aurelien 23
 
24
// Autoload pour cette application
25
function __autoload($nom_classe) {
26
    // Tableau des chemins à inclure pour trouver une classe relative à ce fichier
27
    $chemins = array(
310 aurelien 28
    	'plugins',
68 aurelien 29
        'composants',
30
        'composants'.DS.'cartographie',
31
        'composants'.DS.'openid');
32
    foreach ($chemins as $chemin) {
33
        $fichier_a_inclure = dirname(__FILE__).DS.$chemin.DS.$nom_classe.'.php';
34
 
35
        if (file_exists($fichier_a_inclure)) {
36
            include_once $fichier_a_inclure;
37
            return null;
38
        }
39
    }
40
}
91 aurelien 41
 
310 aurelien 42
?>