Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 252 → Rev 253

/trunk/metier/api_0.1/Cartes.php
New file
0,0 → 1,58
<?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 nomenclatural
public function __Construct($numero, $type = 'nt') {
$this->type = $type;
$this->numero = $numero;
}
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);
$url = $this->formaterUrl($tpl, $params);
return $url;
}
 
public function getLegende() {
switch ($this->type) {
case 'nn' :
$nomTemplate = 'urlChorologieParNnTpl';
break;
case 'nt' :
$nomTemplate = 'urlChorologieParNtTpl';
break;
}
$tpl = Config::get($nomTemplate);
$params = array($this->type => $this->numero);
$url = $this->formaterUrl($tpl."/legende", $params);
$donnees = $this->chargerDonnees($url);
return $donnees;
}
 
}
?>