206 |
aurelien |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Modèle d'accès à la base de données de saisies pour le module espece.
|
|
|
5 |
*
|
|
|
6 |
* @package ODS_saisie
|
|
|
7 |
* @category php 5.2
|
|
|
8 |
* @author Aurélien Peronnet <aurelien@tela-botanica.org>
|
|
|
9 |
* @copyright 2010 Tela-Botanica
|
|
|
10 |
* @license http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
|
|
|
11 |
* @license http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
|
|
|
12 |
* @version SVN: $Id: StationDao.php 154 2010-09-13 12:15:11Z aurelien $
|
|
|
13 |
*
|
|
|
14 |
*/
|
|
|
15 |
class EspeceDao extends Dao {
|
|
|
16 |
|
|
|
17 |
const SERVICE_ESPECE = 'OdsEspece';
|
|
|
18 |
const METHODE_ESPECES_TYPE = 'EspecesParType';
|
|
|
19 |
|
|
|
20 |
/**
|
|
|
21 |
* Retourne l'ensemble des especes présentes organisées hierarchiquement par type.
|
|
|
22 |
*
|
|
|
23 |
* @return array un tableau contenant les informations sur les especes.
|
|
|
24 |
*/
|
|
|
25 |
public function getListeEspecesParType() {
|
|
|
26 |
|
|
|
27 |
$url = $this->url_jrest.self::SERVICE_ESPECE.'/'.self::METHODE_ESPECES_TYPE.'/';
|
|
|
28 |
$json = $this->envoyerRequeteConsultation($url);
|
|
|
29 |
$donnees = json_decode($json, true);
|
|
|
30 |
return $donnees;
|
|
|
31 |
}
|
|
|
32 |
}
|
|
|
33 |
?>
|