Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1329 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
990 isa 1
<?php
2
// declare(encoding='UTF-8');
3
/**
4
 * Classe mère du module Liste.
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 Repartition extends aControleur {
16
 
17
	private $conteneur = null;
18
	private $nomCourant = null;
19
	private $donnees = array();
1329 aurelien 20
	private $referentiel = 'bdtfx';
990 isa 21
	private $cartes;
1346 jpm 22
 
990 isa 23
	public function __construct(Conteneur $conteneur) {
24
		$this->conteneur = $conteneur;
25
		$this->nomCourant = $this->conteneur->getNomCourant();
26
		$this->cartes = $this->conteneur->getApiCartes();
1329 aurelien 27
		$this->referentiel = $this->conteneur->getParametre('referentiel');
990 isa 28
	}
29
 
30
	public function getDonnees() {
1329 aurelien 31
		$donnees['carte'] = $this->getChorodepMiniature();
990 isa 32
		return $donnees;
33
	}
1346 jpm 34
 
990 isa 35
	private function getChorodepMiniature() {
1329 aurelien 36
		$url_carte = null;
1346 jpm 37
		if (Config::get($this->referentiel.'.baseRepartition') != null) {
1329 aurelien 38
			$this->cartes->setProjet(Config::get($this->referentiel.'.baseRepartition'));
39
			$this->cartes->setLargeur('570x534');
1346 jpm 40
			$nt = $this->nomCourant->getNt();
41
			$this->cartes->setId("{$this->referentiel}.nt:$nt");
1329 aurelien 42
			$url_carte = $this->cartes->getUrlDataSvg();
43
		}
44
		return $url_carte;
990 isa 45
	}
46
}
47
?>