Subversion Repositories Applications.annuaire

Rev

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

Rev 68 Rev 91
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 dirname(__FILE__).'/framework/autoload.inc.php';
16
require_once '/home/aurelien/web/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'));
Line 19... Line 19...
19
mb_internal_encoding(Config::get('appli_encodage'));
19
mb_internal_encoding(Config::get('appli_encodage'));
Line 35... Line 35...
35
            include_once $fichier_a_inclure;
35
            include_once $fichier_a_inclure;
36
            return null;
36
            return null;
37
        }
37
        }
38
    }
38
    }
39
}
39
}
-
 
40
 
40
?>
41
?>