Subversion Repositories eFlore/Applications.del

Rev

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

Rev 2012 Rev 2013
Line 147... Line 147...
147
			$parametres[] = 'annee='.$this->parametres['annee'];
147
			$parametres[] = 'annee='.$this->parametres['annee'];
148
		}
148
		}
149
		$service .= (count($parametres) > 0) ? '?'.implode('&', $parametres) : '';
149
		$service .= (count($parametres) > 0) ? '?'.implode('&', $parametres) : '';
Line 150... Line 150...
150
	
150
	
-
 
151
		$url = sprintf($this->config['chemins']['baseURLServicesDelTpl'], $service);
151
		$url = sprintf($this->config['chemins']['baseURLServicesDelTpl'], $service);
152
		//echo "URL: $url<br/>";exit;
152
		$json = $this->getDao()->consulter($url);
153
		$json = $this->getDao()->consulter($url);
Line 153... Line 154...
153
		$retour = json_decode($json, true);
154
		$retour = json_decode($json, true);
154
	
155