Subversion Repositories eFlore/Applications.cel

Rev

Rev 2446 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2446 Rev 2458
Line 1... Line 1...
1
<?php
1
<?php
2
// ATTENTION ! Classe compatible uniquement avec nouveau format de bdd du cel //
2
// declare(encoding='UTF-8');
3
 
-
 
4
/**
3
/**
5
* PHP Version 5
4
 * Retourne des infos au format RDF sur les imags.
6
*
5
 *
7
* Retourne un RDF des images pour eflore
6
 * @internal   Mininum PHP version : 5.2
8
*
-
 
9
* @category  PHP
7
 * @category   CEL
10
* @package   jrest
8
 * @package    Services
-
 
9
 * @subpackage Images
-
 
10
 * @version    0.1
11
* @author    david <david@tela-botanica.org>
11
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
12
* @copyright 2010 Tela-Botanica
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>
13
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
15
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
14
* @version   SVN: <svn_id>
16
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
15
* @link      /doc/jrest/
-
 
16
*/
17
 */
17
class ImageRDF extends Cel {
18
class ImageRDF extends Cel {
Line 18... Line 19...
18
 
19
 
19
	/**
20
	/**
20
	 * Recherche des images associee au numero nomenclatural
21
	 * Recherche des images associee au numero nomenclatural
21
	 * @param numeric $uid [0] : numero nomenclatural obligatoire , $uid[1] (optionnel) : taille image : S , M,  L (default)
22
	 * @param numeric $uid [0] : numero nomenclatural obligatoire , $uid[1] (optionnel) : taille image : S , M,  L (default)
22
	 */
23
	 */
23
	function getElement($uid){
24
	public function getElement($uid){
24
		$nomSelNnP = Cel::db()->proteger($uid[0]);
25
		$nomSelNnP = Cel::db()->proteger($uid[0]);
Line 25... Line 26...
25
		$taille = isset($uid[1]) ? $uid[1] : 'L';
26
		$taille = isset($uid[1]) ? $uid[1] : 'L';
26
 
27