Subversion Repositories Applications.annuaire

Rev

Rev 205 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
69 aurelien 1
<?php
2
/**
3
* PHP Version 5
4
*
5
* @category  PHP
6
* @package   papyrus_bp
7
* @author    aurelien <aurelien@tela-botanica.org>
8
* @copyright 2010 Tela-Botanica
9
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
* @version   SVN: <svn_id>
11
* @link      /doc/papyrus_bp/
12
*/
13
 
14
Class ExecuteurLien extends JRestService {
15
 
16
	public function getElement($uid){
17
 
18
		if(isset($uid[0])) {
19
			$lien_code = $uid[0];
20
			$lien = base64_decode($lien_code);
21
		} else {
22
			return;
23
		}
24
 
25
	    if(!isset($uid[1])) {
26
	    	$retour_ajax = true;
27
	    } else {
28
	    	$adresse_retour = base64_decode($uid[1]);
29
	    }
30
 
31
	    $requete = file_get_contents($lien);
32
	    echo $lien;
33
	    exit;
34
 
35
		if($retour_ajax) {
36
			if($requete) {
37
				$resultat = 'ok';
38
			} else {
39
				$resultat = false;
40
			}
41
			$this->envoyer($resultat);
42
		} else {
43
			header('Location: http://'.$adresse_retour);
44
			exit;
45
		}
46
	}
47
}
48
?>