Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 863 Rev 900
Line 12... Line 12...
12
* @version   SVN: <svn_id>
12
* @version   SVN: <svn_id>
13
* @link      /doc/
13
* @link      /doc/
14
*/
14
*/
Line 15... Line 15...
15
 
15
 
16
/**
16
/**
17
 * Classe renvoyant une liste très succinte des contributions de l'utilisateur
17
 * Classe renvoyant fragment html constitué à partir d'une liste très succinte des contributions de l'utilisateur
18
 * 
18
 * 
19
 */
19
 */
Line 20... Line 20...
20
class InventoryContributionList extends Cel {
20
class InventoryContributionList extends Cel {
Line 40... Line 40...
40
       	if (is_array($resultat_contributions)) {
40
       	if (is_array($resultat_contributions)) {
Line 41... Line 41...
41
 
41
 
42
			foreach ($resultat_contributions as $ligne) {
42
			foreach ($resultat_contributions as $ligne) {
43
				$ligne['nom_sel'] = htmlspecialchars($ligne['nom_sel']);
43
				$ligne['nom_sel'] = htmlspecialchars($ligne['nom_sel']);
44
				$ligne['ce_utilisateur'] = htmlspecialchars($ligne['ce_utilisateur']);
44
				$ligne['ce_utilisateur'] = htmlspecialchars($ligne['ce_utilisateur']);
45
				$ligne['zone_geo'] = htmlspecialchars($ligne['location']);
45
				$ligne['zone_geo'] = htmlspecialchars($ligne['zone_geo']);
46
				$ligne['id_zone_geo'] = htmlspecialchars($ligne['id_zone_geo']);
46
				$ligne['id_zone_geo'] = htmlspecialchars($this->convertirCodeZoneGeoVersDepartement($ligne['ce_zone_geo']));
47
				$ligne['station'] = htmlspecialchars($ligne['station']);
47
				$ligne['station'] = htmlspecialchars($ligne['station']);
48
				$ligne['milieu'] = htmlspecialchars($ligne['milieu']);
48
				$ligne['milieu'] = htmlspecialchars($ligne['milieu']);
49
				$ligne['commentaire'] = htmlspecialchars($ligne['commentaire']);
49
				$ligne['commentaire'] = htmlspecialchars($ligne['commentaire']);
Line 50... Line 50...
50
				$ligne['transmission'] = htmlspecialchars($ligne['transmission']);
50
				$ligne['transmission'] = htmlspecialchars($ligne['transmission']);
51
	
51
	
52
	       		$resume.= '<p>'.$ligne['nom_sel'] ." (".$ligne['nom_sel_nn'].") ".
52
	       		$resume.= '<p>'.$ligne['nom_sel'] ." (".$ligne['nom_sel_nn'].") ".
53
			 			  	'Location : '. $ligne['location'].",". $ligne['station'] . "," .
53
			 			  	'Location : '. $ligne['zone_geo']." (".$ligne['id_zone_geo']."),". $ligne['station'] . "," .
54
			 			  	$ligne['milieu'] . "," . $ligne['commentaire'] . "," . $ligne['transmission'] .
54
			 			  	$ligne['milieu'] . "," . $ligne['commentaire'] . "," . $ligne['transmission'] .
55
			   			 '</p>';
55
			   			 '</p>';
Line 70... Line 70...
70
* v0.09
70
* v0.09
71
*
71
*
72
* Revision 1.3  2007-05-22 12:54:09  ddelon
72
* Revision 1.3  2007-05-22 12:54:09  ddelon
73
* Securisation acces utilisateur
73
* Securisation acces utilisateur
74
*
74
*
75
*
-
 
76
*
-
 
77
*/
75
*/
78
?>
76
?>
79
77