Subversion Repositories Applications.referentiel

Rev

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

Rev 49 Rev 332
Line 103... Line 103...
103
	 * @param string le nom du script à lancer en minuscule.
103
	 * @param string le nom du script à lancer en minuscule.
104
	 * @return mixed un tableau contenant les informations sur les traitements terminés ou false en cas d'échec.
104
	 * @return mixed un tableau contenant les informations sur les traitements terminés ou false en cas d'échec.
105
	 */
105
	 */
106
	public function getTraitementsTermines($code_projet, $script) {
106
	public function getTraitementsTermines($code_projet, $script) {
107
		$url = $this->url."/Termines/$code_projet/$script";
107
		$url = $this->url."/Termines/$code_projet/$script";
108
		
-
 
109
		$json = $this->envoyerRequeteConsultation($url);
108
		$json = $this->envoyerRequeteConsultation($url);
110
		$traitements = json_decode($json, true);
109
		$traitements = json_decode($json, true);
111
		return $traitements;
110
		return $traitements;
112
	}
111
	}