Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1389 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
/**
3
/**
4
* PHP Version 5
4
 * Service importation releve en cours :
-
 
5
 * 1 : L'utilisateur à traiter est communique au service
-
 
6
 * 2 : Les releves associés à la session en cours sont transferés à l'utilisateur identifié
5
*
7
 *
-
 
8
 * @internal   Mininum PHP version : 5.2
6
* @category  PHP
9
 * @category   CEL
7
* @package   jrest
10
 * @package    Services
8
* @author    David Delon <david.delon@clapas.net>
11
 * @subpackage Observations
-
 
12
 * @version    0.1
9
* @author    Aurélien Peronnet <aurelien@tela-botanica.org>
13
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
10
* @copyright 2010 Tela-Botanica
14
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
11
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
15
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
12
* @version   SVN: <svn_id>
-
 
13
* @link      /doc/jrest/
16
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
14
*/
-
 
15
 
-
 
16
/**
-
 
17
* InventoryImport.php
-
 
18
*
-
 
19
* in : utf8
-
 
20
* out : utf8 
-
 
21
* 
-
 
22
* Cas d'utilisation :
-
 
23
* Service importation releve en cours
-
 
24
* 
-
 
25
* 1 : L'utilisateur à traiter est communique au service
17
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
26
* 2 : Les releves associés à la session en cours sont transferés à l'utilisateur identifié 
18
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
27
*/
19
 */
28
class InventoryImport extends Cel  {
20
class InventoryImport extends Cel  {
Line 29... Line 21...
29
 
21
 
30
	function getElement($uid){
-
 
31
	
22
	public function getElement($uid){
32
		// Controle detournement utilisateur 
23
		// Controle detournement utilisateur
33
	 	$this->controleUtilisateur($uid[0]);
24
	 	$this->controleUtilisateur($uid[0]);
34
	 	
25
 
35
	 	$id_session_temporaire = session_id();
26
	 	$id_session_temporaire = session_id();
36
	 	
27
 
37
	 	$gestionnaire_observation = new GestionObservation($this->config);
28
	 	$gestionnaire_observation = new GestionObservation($this->config);
38
	 	$migration_compte_a_compte = $gestionnaire_observation->migrerObservations($id_session_temporaire, $uid[0]);
29
	 	$migration_compte_a_compte = $gestionnaire_observation->migrerObservations($id_session_temporaire, $uid[0]);
39
		 	
30
 
40
		$retour = false;
31
		$retour = false;
41
		if($migration_compte_a_compte) {
32
		if($migration_compte_a_compte) {
42
			$retour = 'OK';	
33
			$retour = 'OK';
43
		}	
34
		}
44
		
35
 
45
		echo $retour;
36
		echo $retour;
46
		exit;
37
		exit();
47
	}
-
 
48
}
-
 
49
/* +--Fin du code ---------------------------------------------------------------------------------------+
-
 
50
* $Log$
-
 
51
* Revision 1.3  2008-01-30 08:57:28  ddelon
-
 
52
* fin mise en place mygwt
-
 
53
*
-
 
54
* Revision 1.2  2007-05-22 12:54:09  ddelon
-
 
55
* Securisation acces utilisateur
-
 
56
*
-
 
57
* Revision 1.1  2007-05-21 18:12:20  ddelon
-
 
58
* Gestion des importations locale de releves
-
 
59
*/
-
 
60
?>
38
	}
-
 
39
}
61
40