Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2446 Rev 2461
Line 1... Line 1...
1
<?php
1
<?php
2
// declare(encoding='UTF-8');
2
// declare(encoding='UTF-8');
3
/**
3
/**
4
 * Service fournissant la liste des ids des images liées à une observation.
4
 * Service générique permettant de manipuler les Images.
5
 * Encodage en entrée : utf8
5
 * Encodage en entrée : utf8
6
 * Encodage en sortie : utf8
6
 * Encodage en sortie : utf8
7
 *
7
 *
8
 * Cas d'utilisation GET :
8
 * Cas d'utilisation GET :
9
 * /CelImage/liste-ids?obsId=[0-9]+ : ids des images liées à l'observation possédant l'identifiant 'obsId'.
9
 * /CelImage/liste-ids?obsId=[0-9]+ : ids des images liées à l'observation possédant l'identifiant 'obsId'.
Line 11... Line 11...
11
 * Cas d'utilisation DELETE :
11
 * Cas d'utilisation DELETE :
12
 *
12
 *
13
 * Sortie :
13
 * Sortie :
14
 * Type de sortie : json (par défaut), HTML en cas d'erreur.
14
 * Type de sortie : json (par défaut), HTML en cas d'erreur.
15
 *
15
 *
-
 
16
 * @internal   Mininum PHP version : 5.2
-
 
17
 * @category   CEL
-
 
18
 * @package    Services
-
 
19
 * @subpackage Images
-
 
20
 * @version    0.1
-
 
21
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
16
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
22
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
17
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
23
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
18
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
24
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
19
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
25
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
20
 * @version	$Id$
26
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
21
 */
27
 */
22
class CelImage extends Cel {
28
class CelImage extends Cel {
Line 23... Line 29...
23
 
29
 
24
	/**
30
	/**