Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 333 Rev 708
Line 116... Line 116...
116
		$tpl = Config::get('taxonSupTpl');
116
		$tpl = Config::get('taxonSupTpl');
117
		$params = array('id' => $num_nom);
117
		$params = array('id' => $num_nom);
118
		$url = $this->formaterUrl($tpl, $params);
118
		$url = $this->formaterUrl($tpl, $params);
119
		return $url;
119
		return $url;
120
	}
120
	}
-
 
121
	
-
 
122
	public function getUrlPermalienNumNom($referentiel, $version, $num_nom) {
-
 
123
		$tpl = Config::get('permalienNumNomTpl');
-
 
124
		$params = array('ref_tax' =>$referentiel, 'ref_version' =>$version, 'id' => $num_nom);
-
 
125
		$url = $this->formaterUrl($tpl, $params);
-
 
126
		return $url;
-
 
127
	}
-
 
128
	
-
 
129
	public function getUrlPermalienTaxon($referentiel, $version, $num_tax) {
-
 
130
		$tpl = Config::get('permalienTaxonTpl');
-
 
131
		$params = array('ref_tax' =>$referentiel, 'ref_version' =>$version, 'id' => $num_tax);
-
 
132
		$url = $this->formaterUrl($tpl, $params);
-
 
133
		return $url;
-
 
134
	}
121
}
135
}
122
?>
136
?>
123
137