Subversion Repositories eFlore/Applications.cel

Rev

Rev 2459 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1565 jpm 1
<?php
2462 jpm 2
// declare(encoding='UTF-8');
1565 jpm 3
/**
2462 jpm 4
 * Classe conteneur servant à gérer les infos des champs étendus.
5
 *
6
 * @internal   Mininum PHP version : 5.2
7
 * @category   CEL
8
 * @package    Services
9
 * @subpackage Bibliothèques
10
 * @version    0.1
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>
17
 */
1565 jpm 18
class ChampEtendu {
19
	public $id = '';
20
	public $cle = '';
21
	public $valeur = '';
2462 jpm 22
}