Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 416 Rev 863
Line 1... Line 1...
1
<?php
1
<?php
-
 
2
// ATTENTION ! Classe compatible uniquement avec nouveau format de bdd du cel //
Line -... Line 3...
-
 
3
 
-
 
4
/**
-
 
5
* PHP Version 5
-
 
6
*
-
 
7
* @category  PHP
-
 
8
* @package   papyrus_bp
-
 
9
* @author    aurelien <aurelien@tela-botanica.org>
-
 
10
* @copyright 2010 Tela-Botanica
-
 
11
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
-
 
12
* @version   SVN: <svn_id>
-
 
13
* @link      /doc/
Line 2... Line -...
2
 
-
 
3
 
14
*/
-
 
15
 
4
Class InventoryContributionList extends DBAccessor {
16
/**
5
 
-
 
6
 
17
 * Classe renvoyant une liste très succinte des contributions de l'utilisateur
7
	protected $config;
18
 * 
8
 
-
 
9
	function InventoryContributionList($config) {
-
 
10
 
-
 
Line 11... Line 19...
11
		$this->config=$config;
19
 */
12
	}
20
class InventoryContributionList extends Cel {
13
 
21
 
Line 14... Line -...
14
	function getRessource() {
-
 
15
		echo '';
22
	function getRessource() {
Line 16... Line 23...
16
	}
23
		echo '';
17
 
24
	}
18
 
25
 
Line 19... Line -...
19
	function getElement($uid){
-
 
20
 
-
 
21
		if(!isset($uid[0])) {
26
	function getElement($uid){
22
			echo '';
27
 
23
		}
28
		if(!isset($uid[0])) {
Line 24... Line 29...
24
 
29
			echo '';
25
		$DB=$this->connectDB($this->config,'database_cel');
30
		}
26
 
-
 
27
		$query="SELECT * FROM cel_inventory ".
-
 
28
		"WHERE identifiant = '".$DB->escapeSimple($uid[0])."' ".
-
 
29
		"ORDER BY date_modification DESC LIMIT 0,5";
-
 
30
 
31
 
31
	    $res =& $DB->query($query);
32
		$requete_contributions = "SELECT * FROM cel_obs ".
-
 
33
		"WHERE ce_utilisateur = ".$this->proteger($uid[0])." ".
32
 
34
		"ORDER BY date_modification DESC LIMIT 0,5";
33
        if (DB::isError($res)) {
35
 
34
	        die($res->getMessage());
36
	    $resultat_contributions = $this->requeter($requete_contributions);
35
    	}
37
	    
36
 
38
	    $resume = '';
37
    	$resume = "";
39
 
38
 
40
       	if (is_array($resultat_contributions)) {
39
 
41
 
40
	   while ($row =& $res->fetchrow(DB_FETCHMODE_ASSOC)) {
42
			foreach ($resultat_contributions as $ligne) {
41
       $row['nom_sel'] = htmlspecialchars($row['nom_sel']);
43
				$ligne['nom_sel'] = htmlspecialchars($ligne['nom_sel']);
42
       $row['identifiant'] = htmlspecialchars($row['identifiant']);
-
 
43
       $row['location'] = htmlspecialchars($row['location']);
44
				$ligne['ce_utilisateur'] = htmlspecialchars($ligne['ce_utilisateur']);
44
       $row['id_location'] = htmlspecialchars($row['id_location']);
45
				$ligne['zone_geo'] = htmlspecialchars($ligne['location']);
-
 
46
				$ligne['id_zone_geo'] = htmlspecialchars($ligne['id_zone_geo']);
45
       $row['station'] = htmlspecialchars($row['station']);
47
				$ligne['station'] = htmlspecialchars($ligne['station']);
46
       $row['milieu'] = htmlspecialchars($row['milieu']);
48
				$ligne['milieu'] = htmlspecialchars($ligne['milieu']);
47
       $row['commentaire'] = htmlspecialchars($row['commentaire']);
49
				$ligne['commentaire'] = htmlspecialchars($ligne['commentaire']);
48
       $row['transmission'] = htmlspecialchars($row['transmission']);
50
				$ligne['transmission'] = htmlspecialchars($ligne['transmission']);
Line 49... Line -...
49
 
-
 
50
 
51
	
51
       $resume.= '<p>'.$row['nom_sel'] ." (".$row['num_nom_sel'].") ".
52
	       		$resume.= '<p>'.$ligne['nom_sel'] ." (".$ligne['nom_sel_nn'].") ".
52
		 	'Location : '. $row['location'].",". $row['station'] . "," . $row['milieu'] . "," . $row['commentaire'] . "," . $row['transmission'] .
53
			 			  	'Location : '. $ligne['location'].",". $ligne['station'] . "," .
53
		   	'</p>';
54
			 			  	$ligne['milieu'] . "," . $ligne['commentaire'] . "," . $ligne['transmission'] .
54
 
-
 
55
       }
55
			   			 '</p>';
56
 
-
 
57
 
-
 
58
        header("Content-Type: text/html; charset=ISO-8859-1");
56
			}
59
    	print $resume;
57
       }
60
    	exit;
58
 
61
    }
59
        header("Content-Type: text/html; charset=ISO-8859-1");
62
 
60
    	print $resume;
Line 75... Line 73...
75
* Securisation acces utilisateur
73
* Securisation acces utilisateur
76
*
74
*
77
*
75
*
78
*
76
*
79
*/
77
*/
80
 
-
 
81
?>
78
?>
82
79