Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3061 Rev 3084
Line 8... Line 8...
8
* @copyright 2015 Tela-Botanica
8
* @copyright 2015 Tela-Botanica
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
10
* @version   SVN: <svn_id>
11
*/
11
*/
Line -... Line 12...
-
 
12
 
-
 
13
/**
-
 
14
 * Migre les observations et les images d'un utilisateur, lorsqu'il change d'adresse email
12
 
15
 * (ou les migre d'un utilisateur à l'autre)
-
 
16
 * 
-
 
17
 * Utilisation : http://domain/serice:cel/Modification/?mail=ancien_email@x.fr&nouveau_mail=nouvel_email@x.fr
13
 
18
 */
Line 14... Line 19...
14
class Modification extends Cel {
19
class Modification extends Cel {
15
	
20
	
Line 16... Line 21...
16
	public $table_image = "cel_images";
21
	public $table_image = "cel_images";
17
	public $table_obs = "cel_obs";
22
	public $table_obs = "cel_obs";
18
	
23
	
Line 19... Line 24...
19
	public function getRessource() {
24
	public function getRessource() {
20
		return $this->getElement(array());
25
		return $this->getElement(array());
21
	}
-
 
22
	
26
	}
23
	public function getElement($uid) {
27
	
Line 24... Line 28...
24
			
28
	public function getElement($uid) {
25
		$id_utilisateur = (isset($_GET['id_utilisateur'])) ? $_GET['id_utilisateur'] : false;
29
 
26
		$mail = (isset($_GET['mail'])) ? $_GET['mail'] : false;
30
		$mail = (isset($_GET['mail'])) ? $_GET['mail'] : false;
Line 27... Line 31...
27
		$nouveau_mail = (isset($_GET['nouveau_mail'])) ? $_GET['nouveau_mail'] : false;
31
		$nouveau_mail = (isset($_GET['nouveau_mail'])) ? $_GET['nouveau_mail'] : false;
28
		
32