Subversion Repositories eFlore/Applications.cel

Rev

Rev 1765 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1765 Rev 2458
Line 1... Line 1...
1
<?php
1
<?php
2
// ATTENTION ! Classe compatible uniquement avec nouveau format de bdd du cel //
-
 
3
 
-
 
4
/**
-
 
5
 * @author David Delon <david@tela-botanica.org>
-
 
6
 * @author Aurélien Peronnet <aurelien@tela-botanica.org>
-
 
7
 * @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
-
 
8
 * @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
-
 
9
 * @version $Id$
2
// declare(encoding='UTF-8');
10
 * @copyright © 2010, David Delon, Aurélien Peronnet
-
 
11
*/
-
 
12
 
-
 
13
/**
3
/**
14
 * InventoryLocationList.php  
4
 * Service de listage des zones géographiques d'un utilisateur
15
 * 
5
 *
-
 
6
 * @internal   Mininum PHP version : 5.2
16
 * in : utf8
7
 * @category   CEL
17
 * out : utf8
8
 * @package    Services
18
 * Cas d'utilisation :
9
 * @subpackage Observations
-
 
10
 * @version    0.1
19
 * Service listage des zones géographiques d'un utilisateur
11
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
-
 
12
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
-
 
13
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
-
 
14
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
-
 
15
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
-
 
16
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
20
 */ 
17
 */
21
class InventoryLocationList extends Cel {
18
class InventoryLocationList extends Cel {
22
	
19
 
23
	function getElement($uid){
20
	public function getElement($uid) {
24
		
-
 
25
		// Controle detournement utilisateur
21
		// Controle detournement utilisateur
26
	 	$this->controleUtilisateur($uid[0]);
22
	 	$this->controleUtilisateur($uid[0]);
-
 
23
		$idUtilisateurP = Cel::db()->proteger($uid[0]);
Line 27... Line -...
27
 
-
 
28
		$retour = array();
-
 
29
 
24
 
-
 
25
		$requete = 'SELECT DISTINCT ce_zone_geo, zone_geo, lieudit, station '.
30
        $requete_zones_geo = 'SELECT DISTINCT ce_zone_geo, zone_geo, lieudit, station FROM cel_obs '.
26
			'FROM cel_obs '.
31
							 'WHERE ce_utilisateur = '.Cel::db()->proteger($uid[0]).' '.
27
			"WHERE ce_utilisateur = $idUtilisateurP ".
32
							 'ORDER BY ce_zone_geo ASC, zone_geo ASC, lieudit ASC, station ASC';
-
 
-
 
28
			'ORDER BY ce_zone_geo ASC, zone_geo ASC, lieudit ASC, station ASC '.
33
 
29
			' -- '.__FILE__.':'.__LINE__;
34
        $resultat_zones_geo = Cel::db()->requeter($requete_zones_geo);
30
		$resultats = Cel::db()->requeter($requete);
35
 
31
 
36
        if (is_array($resultat_zones_geo)) {
-
 
37
	        $retour = $resultat_zones_geo;
-
 
38
    	}
-
 
39
 
32
		$retour = (is_array($resultats)) ? $resultats : array();
40
		$this->envoyerJson($retour);			
33
		$this->envoyerJson($retour);
41
		return true;	
34
		return true;
42
	}
-
 
43
}
-
 
44
/* +--Fin du code ---------------------------------------------------------------------------------------+
-
 
45
* $Log$
-
 
46
* Revision 1.6  2008-01-30 08:57:28  ddelon
-
 
47
* fin mise en place mygwt
-
 
48
*
-
 
49
* Revision 1.5  2007-05-22 12:54:09  ddelon
-
 
50
* Securisation acces utilisateur
-
 
51
*
-
 
52
*
-
 
53
*
-
 
54
*/
-
 
55
?>
35
	}
-
 
36
}
56
37