Subversion Repositories Applications.framework

Rev

Rev 61 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61 Rev 62
Line 53... Line 53...
53
                                DOSSIER_CONTROLEURS.DIRECTORY_SEPARATOR,
53
                                DOSSIER_CONTROLEURS.DIRECTORY_SEPARATOR,
54
                                DOSSIER_MODELES.DIRECTORY_SEPARATOR);
54
                                DOSSIER_MODELES.DIRECTORY_SEPARATOR);
Line 55... Line 55...
55
    
55
    
56
    foreach ($dossiers_classes as $chemin) {
56
    foreach ($dossiers_classes as $chemin) {
57
        if (file_exists($fichier_a_tester = $chemin.$classe.'.php')) {
57
        if (file_exists($fichier_a_tester = $chemin.$classe.'.php')) {
58
            include_once $fichier_a_tester
58
            include_once $fichier_a_tester;
59
            return null;         
59
            return null;         
60
        }
60
        }
61
    }
61
    }
62
}
62
}
63
?>
63
?>