Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 291 Rev 333
Line 92... Line 92...
92
		$tpl = Config::get('taxonsRechercheTpl');
92
		$tpl = Config::get('taxonsRechercheTpl');
93
		$params = array('valeur' => $nom, 'type' => $typeRech);
93
		$params = array('valeur' => $nom, 'type' => $typeRech);
94
		$url = $this->formaterUrl($tpl, $params);
94
		$url = $this->formaterUrl($tpl, $params);
95
		return $url;
95
		return $url;
96
	}
96
	}
-
 
97
	
-
 
98
	public function getTaxonsInf($num_nom) {
-
 
99
		$url = $this->getUrlTaxonsInf($num_nom);
-
 
100
		return $this->chargerDonnees($url);
-
 
101
	}
-
 
102
	
-
 
103
	private function getUrlTaxonsInf($num_nom) {
-
 
104
		$tpl = Config::get('taxonInfTpl');
-
 
105
		$params = array('id' => $num_nom);
-
 
106
		$url = $this->formaterUrl($tpl, $params);
-
 
107
		return $url;
-
 
108
	}
-
 
109
	
-
 
110
	public function getTaxonsSup($num_nom) {
-
 
111
		$url = $this->getUrlTaxonsSup($num_nom);
-
 
112
		return $this->chargerDonnees($url);
-
 
113
	}
-
 
114
	
-
 
115
	private function getUrlTaxonsSup($num_nom) {
-
 
116
		$tpl = Config::get('taxonSupTpl');
-
 
117
		$params = array('id' => $num_nom);
-
 
118
		$url = $this->formaterUrl($tpl, $params);
-
 
119
		return $url;
-
 
120
	}
97
}
121
}
98
?>
122
?>
99
123