Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2459 Rev 2462
Line 1... Line 1...
1
<?php
1
<?php
-
 
2
// declare(encoding='UTF-8');
2
/**
3
/**
3
* PHP Version 5
4
 * Classe conteneur servant à gérer les infos des champs étendus.
4
*
5
 *
-
 
6
 * @internal   Mininum PHP version : 5.2
5
* @category  PHP
7
 * @category   CEL
6
* @package   jrest
8
 * @package    Services
-
 
9
 * @subpackage Bibliothèques
-
 
10
 * @version    0.1
7
* @author    Jean-Pascal MILCENT <jpm@tela-botanica.org>
11
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
8
* @copyright 2010 Tela-Botanica
12
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
13
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
10
* @version   SVN: <svn_id>
14
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
11
* @link      /doc/jrest/
15
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
12
*/
-
 
13
 
-
 
14
/**
-
 
15
* Classe conteneur servant à gérer les infos des champs étendus.
16
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
16
*
-
 
17
*/
17
 */
18
class ChampEtendu {
18
class ChampEtendu {
19
	public $id = '';
19
	public $id = '';
20
	public $cle = '';
20
	public $cle = '';
21
	public $valeur = '';
21
	public $valeur = '';
22
}
-
 
23
?>
-
 
24
22
}
-
 
23
25
24