Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 536 → Rev 535

/trunk/services/modules/0.1/Projets.php
27,9 → 27,6
private $serviceNom = array();
/** Chemin vers le dossier courrant. */
private $cheminCourrant = null;
private $cache;
/** Indique si oui (true) ou non (false), on veut utiliser les paramètres brutes. */
protected $utilisationParametresBruts = true;
 
176,8 → 173,7
if (file_exists($chemin)) {
$service = new $classe($this->getBdd());
$ressourcesPourService = $this->filtrerRessourcesPourService();
$this->cache = new CacheEflore($service, $this->projetNom, $this->serviceNom, Config::get('cache'));
$retour = $this->cache->consulter($ressourcesPourService, $this->parametres);
$retour = $service->consulter($ressourcesPourService, $this->parametres);
}
}
if (is_null($service)) {