Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
291 jpm 1
<?php
2
class Conteneur {
3
	protected $parametres = array();
4
	protected $partages = array();
5
 
6
	public function __construct(array $parametres = null) {
7
		$this->parametres = is_null($parametres) ? array() : $parametres;
8
	}
9
 
10
	public function getParametre($cle) {
11
		$valeur = isset($this->parametres[$cle]) ? $this->parametres[$cle] : Config::get($cle);
12
		return $valeur;
13
	}
14
 
15
	public function getParametreTableau($cle) {
16
		$tableau = array();
17
		$parametre = $this->getParametre($cle);
18
		if (empty($parametre) === false) {
19
			$tableauPartiel = explode(',', $parametre);
20
			$tableauPartiel = array_map('trim', $tableauPartiel);
21
			foreach ($tableauPartiel as $champ) {
22
				if (strpos($champ, '=') === false) {
23
					$tableau[] = trim($champ);
24
				} else {
25
					list($cle, $val) = explode('=', $champ);
26
					$tableau[trim($cle)] = trim($val);
27
				}
28
			}
29
		}
30
		return $tableau;
31
	}
32
 
33
	public function setParametre($cle, $valeur) {
34
		$this->parametres[$cle] = $valeur;
35
	}
36
 
37
	public function getAppUrls() {
38
		if (!isset($this->partages['AppUrls'])){
39
			$this->partages['AppUrls'] = new AppUrls();
40
		}
41
		return $this->partages['AppUrls'];
42
	}
43
 
44
	public function getApiNoms() {
45
		$noms = new Noms($this->getParametre('referentiel_defaut'));
46
		return $noms;
47
	}
48
 
49
	public function getApiTaxons() {
50
		$taxons = new Taxons($this->getParametre('referentiel_defaut'));
51
		return $taxons;
52
	}
518 jpm 53
 
349 gduche 54
	public function getApiBiblioBota() {
55
		$biblioBota = new BiblioBota();
56
		return $biblioBota;
57
	}
291 jpm 58
 
59
	public function getApiImages() {
60
		$images = new Images();
61
		return $images;
62
	}
63
 
64
	public function getApiCartes() {
65
		$cartes = new Cartes();
66
		return $cartes;
67
	}
68
 
303 jpm 69
	public function getApiNomsVernaculaires() {
70
		$nomsVernaculaires = new NomsVernaculaires();
71
		return $nomsVernaculaires;
72
	}
73
 
291 jpm 74
	public function getApiTextes() {
75
		$textes = new Textes();
76
		return $textes;
77
	}
518 jpm 78
 
387 aurelien 79
	public function getApiWikini() {
80
		$wiki = new Wikini();
81
		return $wiki;
82
	}
291 jpm 83
 
84
	public function getApiMetaDonnees() {
85
		$meta = new MetaDonnees();
86
		return $meta;
87
	}
88
 
293 delphine 89
	public function getNomCourant() {
90
		if (!isset($this->partages['NomCourant'])){
291 jpm 91
			$nns = $this->getParametre('num_nom');
92
			$noms = $this->getApiNoms();
93
			$taxons = $this->getApiTaxons();
293 delphine 94
			$this->partages['NomCourant'] = new NomCourant($nns, $noms, $taxons);
291 jpm 95
		}
293 delphine 96
		return $this->partages['NomCourant'];
291 jpm 97
	}
98
 
99
	public function getUtilisateur() {
100
		if (!isset($this->partages['Utilisateur'])){
518 jpm 101
			$this->partages['Utilisateur'] = new Utilisateur($this);
291 jpm 102
		}
103
		return $this->partages['Utilisateur'];
104
	}
105
 
106
	public function getBdd() {
107
		if (!isset($this->partages['Bdd'])){
108
			$this->partages['Bdd'] = new Bdd();
109
		}
110
		return $this->partages['Bdd'];
111
	}
518 jpm 112
 
113
	public function getRestClient() {
114
		if (!isset($this->partages['RestClient'])){
115
			$this->partages['RestClient'] = new RestClient();
116
		}
117
		return $this->partages['RestClient'];
118
	}
291 jpm 119
}
120
?>