Subversion Repositories Applications.referentiel

Rev

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

Rev 20 Rev 49
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
		'..'.DS.'bibliotheque'.DS.'dao',	
18
		'..'.DS.'bibliotheque'.DS.'dao',
-
 
19
		'..'.DS.'bibliotheque'.DS.'utilitaires',
19
		'bibliotheque'.DS.'pear',
20
		'bibliotheque'.DS.'pear',
20
		'composants');
21
		'composants');
21
	foreach ($chemins as $chemin) {
22
	foreach ($chemins as $chemin) {
22
		$fichier_a_inclure = dirname(__FILE__).DS.$chemin.DS.$nom_classe.'.php';
23
		$fichier_a_inclure = dirname(__FILE__).DS.$chemin.DS.$nom_classe.'.php';
23
		if (file_exists($fichier_a_inclure)) {
24
		if (file_exists($fichier_a_inclure)) {