Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 60 Rev 80
Line 50... Line 50...
50
		$url = strtr($tpl, $parametres);
50
		$url = strtr($tpl, $parametres);
51
		return $url;
51
		return $url;
52
	}
52
	}
Line 53... Line 53...
53
	
53
	
54
	private function ajouterParametreParDefaut(Array $parametres) {
54
	private function ajouterParametreParDefaut(Array $parametres) {
55
		$parametres['projet'] = $this->projet;
55
		$parametres['projet'] = isset($parametres['projet']) ? $parametres['projet'] : $this->projet;
56
		return $parametres;
56
		return $parametres;
Line 57... Line 57...
57
	}
57
	}
58
	
58