Rev 253 | Rev 257 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php// declare(encoding='UTF-8');/*** Classe gérant les images.** @category PHP 5.2* @package eflore-consultation* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>* @author Delphine CAUQUIL <delphine@tela-botanica.org>* @copyright 2011 Tela-Botanica* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL-v3* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL-v2* @version $Id$*/class Cartes extends Eflore {private $numero;private $type; //nt taxonomique ou nn nomenclaturalprivate $largeur;public function __Construct($numero, $type = 'nt', $largeur = 630) {$this->type = $type;$this->numero = $numero;$this->largeur = $largeur;}public function getUrlImage() {switch ($this->type) {case 'nn' :$nomTemplate = 'urlChorologieParNnTpl';break;case 'nt' :$nomTemplate = 'urlChorologieParNtTpl';break;}$tpl = Config::get($nomTemplate);$params = array($this->type => $this->numero, 'largeur' => $this->largeur);$url = $this->formaterUrl($tpl, $params);return $url;}public function getLegende() {switch ($this->type) {case 'nn' :$nomTemplate = 'legendeChorologieParNnTpl';break;case 'nt' :$nomTemplate = 'legendeChorologieParNtTpl';break;}$tpl = Config::get($nomTemplate);$params = array($this->type => $this->numero);$url = $this->formaterUrl($tpl, $params);$donnees = $this->chargerDonnees($url);return $donnees;}}?>