15 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Modèle d'accès à la base de données des Collections pour le module Personnes.
|
|
|
5 |
*
|
|
|
6 |
* @package Collection
|
|
|
7 |
* @category php 5.2
|
|
|
8 |
* @author Jean-Pascal MILCENT <jpm@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$
|
|
|
13 |
*
|
|
|
14 |
*/
|
|
|
15 |
class PersonneDao extends ColModele {
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* Retourne l'ensemble des information d'une personne.
|
|
|
19 |
*
|
|
|
20 |
* @param integer l'id de la personne.
|
|
|
21 |
* @return array un tableau contenant les informations sur la personne.
|
|
|
22 |
*/
|
|
|
23 |
public function getPersonne($id) {
|
|
|
24 |
$json = file_get_contents("http://www.tela-botanica.org/eflore/coel/jrest/CoelPersonne/$id");
|
|
|
25 |
$donnees = json_decode($json, true);
|
|
|
26 |
return $donnees;
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
public function getPersonneNomComplet($id) {
|
|
|
30 |
$donnees = $this->getPersonne($id);
|
|
|
31 |
$nom_complet = $donnees[1][0]['cp_fmt_nom_complet'];
|
|
|
32 |
return $nom_complet;
|
|
|
33 |
}
|
|
|
34 |
}
|
|
|
35 |
?>
|