Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 370 | Rev 731 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
44 jpm 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Classe gérant les noms scientifiques.
5
 *
6
 * @category	PHP 5.2
7
 * @package		eflore-consultation
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @author		Delphine CAUQUIL <delphine@tela-botanica.org>
10
 * @copyright	2011 Tela-Botanica
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3
12
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2
13
 * @version		$Id$
14
 */
15
class Noms extends Eflore {
291 jpm 16
 
17
	public function getSynonymes($nn) {
283 delphine 18
		$tpl = Config::get('nomsSynonymesTpl');
291 jpm 19
		$params = array('id' => $nn);
283 delphine 20
		$url = $this->formaterUrl($tpl, $params);
21
		return $this->chargerDonnees($url);
22
	}
336 aurelien 23
 
24
	public function getFlores($nn) {
25
		$tpl = Config::get('nomsFloresTpl');
26
		$params = array('id' => $nn);
27
		$url = $this->formaterUrl($tpl, $params);
28
		return $this->chargerDonnees($url);
29
	}
291 jpm 30
 
31
	public function getNom($nn) {
32
		$url = $this->getUrlNom($nn);
33
		return $this->chargerDonnees($url);
34
	}
370 aurelien 35
 
291 jpm 36
 
165 delphine 37
	public function getRechercheEtendue($nom, $type_resultat = '') {
38
		$methode = 'getUrlRecherche'.$type_resultat;
39
		if (method_exists($this, $methode)) {
40
			$url = $this->$methode($nom, 'etendue');
41
		} else {
42
			$url = $this->getUrlRecherche($nom, 'etendue');
43
			Debug::printr("Le type de recherche demandé '$type_resultat' n'est pas disponible.");
44
		}
133 jpm 45
		return $this->chargerDonneesRecursivement($url);
53 delphine 46
	}
133 jpm 47
 
53 delphine 48
	public function getRechercheFloue($nom) {
49
		$url = $this->getUrlRecherche($nom, 'floue');
50
		return $this->chargerDonnees($url);
51
	}
133 jpm 52
 
291 jpm 53
	private function getUrlNom($nn) {
54
		$tpl = Config::get('nomTpl');
55
		$params = array('id' => $nn);
56
		$url = $this->formaterUrl($tpl, $params);
57
		return $url;
58
	}
59
 
165 delphine 60
	// retourne les champs par defaut
53 delphine 61
	private function getUrlRecherche($nom, $typeRech) {
62
		$tpl = Config::get('nomsRechercheTpl');
60 jpm 63
		$params = array('valeur' => $nom, 'type' => $typeRech);
53 delphine 64
		$url = $this->formaterUrl($tpl, $params);
65
		return $url;
66
	}
291 jpm 67
 
169 delphine 68
	// retourne les champs par defaut
69
	private function getUrlRechercheAlphab($nom, $typeRech) {
70
		$tpl = Config::get('nomsRechercheAlphabTpl');
71
		$params = array('valeur' => $nom, 'type' => $typeRech);
72
		$url = $this->formaterUrl($tpl, $params);
73
		return $url;
74
	}
291 jpm 75
 
169 delphine 76
	// retourne les champs par defaut
77
	private function getUrlRechercheRetenu($nom, $typeRech) {
78
		$tpl = Config::get('nomsRechercheRetenuTpl');
79
		$params = array('valeur' => $nom, 'type' => $typeRech);
80
		$url = $this->formaterUrl($tpl, $params);
81
		return $url;
82
	}
291 jpm 83
 
169 delphine 84
	private function getUrlRechercheSynonyme($nom, $typeRech) {
85
		$tpl = Config::get('nomsRechercheSynonymeTpl');
86
		$params = array('valeur' => $nom, 'type' => $typeRech);
87
		$url = $this->formaterUrl($tpl, $params);
88
		return $url;
89
	}
291 jpm 90
 
165 delphine 91
	// retourne les champs par defaut + nom retenu
92
	private function getUrlRechercheDetermination($nom, $typeRech) {
93
		$tpl = Config::get('nomsRechercheDeterminationTpl');
94
		$params = array('valeur' => $nom, 'type' => $typeRech);
95
		$url = $this->formaterUrl($tpl, $params);
96
		return $url;
97
	}
291 jpm 98
 
165 delphine 99
	// retourne les champs par defaut + nom decompose (au, an et bib)
100
	private function getUrlRechercheDecompo($nom, $typeRech) {
101
		$tpl = Config::get('nomsRechercheDecompoTpl');
102
		$params = array('valeur' => $nom, 'type' => $typeRech);
103
		$url = $this->formaterUrl($tpl, $params);
104
		return $url;
105
	}
44 jpm 106
}
107
?>