Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 912 Rev 1058
Line 293... Line 293...
293
		$parametres['resultat'] = 'decompo';
293
		$parametres['resultat'] = 'decompo';
294
		$this->urlBase->setRequete($parametres);
294
		$this->urlBase->setRequete($parametres);
295
		$url = $this->urlBase->getURL();
295
		$url = $this->urlBase->getURL();
296
		return $url;
296
		return $url;
297
	}
297
	}
298
 
-
 
299
	public function obtenirCache($id) {
-
 
300
		$retour = unserialize($this->cache->charger($id));
-
 
301
		if ($retour == false) {
-
 
302
			$retour = null;
-
 
303
		}
-
 
304
		return $retour;
-
 
305
	}
-
 
306
	
-
 
307
	public function mettreEnCache($id, $donnees) {
-
 
308
		$this->cache->sauver(serialize($donnees), $id);
-
 
309
	}
-
 
310
}
298
}
311
?>
299
?>
312
300