Subversion Repositories Applications.referentiel

Rev

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

Rev 18 Rev 20
Line 13... Line 13...
13
 */
13
 */
14
// Autoload pour cette application
14
// Autoload pour cette application
15
function __autoload($nom_classe) {
15
function __autoload($nom_classe) {
16
	// Tableau des chemins à inclure pour trouver une classe relatif à ce fichier
16
	// Tableau des chemins à inclure pour trouver une classe relatif à ce fichier
17
	$chemins = array(
17
	$chemins = array(
18
		'bibliotheque'.DS.'noyau',	
18
		'..'.DS.'bibliotheque'.DS.'dao',	
19
		'bibliotheque'.DS.'pear',
19
		'bibliotheque'.DS.'pear',
20
		'bibliotheque'.DS.'utilitaires',
-
 
21
		'composants');
20
		'composants');
22
	foreach ($chemins as $chemin) {
21
	foreach ($chemins as $chemin) {
23
		$fichier_a_inclure = dirname(__FILE__).DS.$chemin.DS.$nom_classe.'.php';
22
		$fichier_a_inclure = dirname(__FILE__).DS.$chemin.DS.$nom_classe.'.php';
24
		if (file_exists($fichier_a_inclure)) {
23
		if (file_exists($fichier_a_inclure)) {
25
			include_once $fichier_a_inclure;
24
			include_once $fichier_a_inclure;