Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 848 Rev 882
Line 1... Line 1...
1
<?php
1
<?php
2
// ATTENTION ! Classe compatible uniquement avec nouveau format de bdd du cel //
2
// ATTENTION ! Classe compatible uniquement avec nouveau format de bdd du cel //
-
 
3
/**
-
 
4
* PHP Version 5
3
 
5
*
4
// in : utf8
6
* @category  PHP
5
// out : utf8
7
* @package   papyrus_bp
-
 
8
* @author    aurelien <aurelien@tela-botanica.org>
-
 
9
* @copyright 2010 Tela-Botanica
-
 
10
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
-
 
11
* @version   SVN: <svn_id>
-
 
12
* @link      /doc/papyrus_bp/
-
 
13
*/
Line 6... Line 14...
6
 
14
 
7
/**
15
/**
8
 * Liste les date de releves par utilisateur
16
 * Liste les date de releves par utilisateur
9
 * 
17
 * 
10
 * uid[0] : utilisateur obligatoire
-
 
11
 * uid[1] : si absent : valeur 'all' (annee)
-
 
12
 * uid[2] : si absent : valeur 'all' (mois)
18
 * in=utf8
-
 
19
 * out=utf8
13
 * uid[3] : si absent : valeur 'all' (jour)
20
 *
14
 **/ 
21
 **/ 
Line 15... Line 22...
15
class InventoryDateList extends Cel {
22
class InventoryDateList extends Cel {
Line -... Line 23...
-
 
23
	
-
 
24
	private $correspondance_fonction = array(1 => 'year', 2 => 'month', 3 => 'day');
-
 
25
	
-
 
26
	/*** 
-
 
27
	* @param int uid[0] : utilisateur obligatoire
16
	
28
	* @param int uid[1] : si absent : valeur 'all' (annee)
17
	private $correspondance_fonction = array(1 => 'year', 2 => 'month', 3 => 'day');
29
	* @param int uid[2] : si absent : valeur 'all' (mois)
Line 18... Line 30...
18
	
30
	* @param int uid[3] : si absent : valeur 'all' (jour)
19
 
31
	*/
20
	function getElement($uid){
32
	function getElement($uid){
Line 88... Line 100...
88
* Securisation acces utilisateur
100
* Securisation acces utilisateur
89
*
101
*
90
*
102
*
91
* 
103
* 
92
*/
104
*/
93
 
-
 
94
 
-
 
95
 
-
 
96
?>
105
?>
97
106