Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 777 Rev 806
Line 28... Line 28...
28
	public function getSyntaxonsCatminat() {
28
	public function getSyntaxonsCatminat() {
29
		$url = $this->getUrlSyntaxonsCatminat();
29
		$url = $this->getUrlSyntaxonsCatminat();
30
		return $this->chargerDonnees($url);
30
		return $this->chargerDonnees($url);
31
	}
31
	}
Line -... Line 32...
-
 
32
	
-
 
33
	public function getSyntaxonsSynonymes() {
-
 
34
		$url = $this->getUrlSyntaxonsSynonymes();
-
 
35
		return $this->chargerDonnees($url);
-
 
36
	}
32
	
37
	
33
	public function getUrlSyntaxonsCatminat() {
38
	public function getUrlSyntaxonsCatminat() {
34
		$tpl = Config::get('syntaxonsCatminat');
39
		$tpl = Config::get('syntaxonsCatminat');
35
		$params = array( 'code' => urlencode($this->catminat));
40
		$params = array( 'code' => urlencode($this->catminat));
36
		$url = $this->formaterUrl($tpl, $params);
41
		$url = $this->formaterUrl($tpl, $params);
Line 41... Line 46...
41
		$tpl = Config::get('syntaxonsSuperieurs');
46
		$tpl = Config::get('syntaxonsSuperieurs');
42
		$params = array( 'code' => $this->catminat);
47
		$params = array( 'code' => $this->catminat);
43
		$url = $this->formaterUrl($tpl, $params);
48
		$url = $this->formaterUrl($tpl, $params);
44
		return $url;
49
		return $url;
45
	}
50
	}
-
 
51
	
-
 
52
	public function getUrlSyntaxonsSynonymes() {
-
 
53
		$tpl = Config::get('syntaxonsSynonymes');
-
 
54
		$params = array( 'code' => $this->catminat);
-
 
55
		$url = $this->formaterUrl($tpl, $params);
-
 
56
		return $url;
-
 
57
	}
46
}
58
}
47
?>
59
?>
48
60