From 77665320d75926cff3bb638bbf9eda1ed5fde8c9 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Thu, 29 Dec 2011 21:10:23 +0000 Subject: [PATCH] Commentaires --- library/Scores/SessionCiblage.php | 36 +++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/library/Scores/SessionCiblage.php b/library/Scores/SessionCiblage.php index ce3836a3..4a992562 100644 --- a/library/Scores/SessionCiblage.php +++ b/library/Scores/SessionCiblage.php @@ -21,6 +21,9 @@ class SessionCiblage if (isset($this->valeur['NB'])){ unset($this->valeur['NB']); } } + /** + * Enregistre les informations dans la session + */ protected function setSession() { $session = new Zend_Session_Namespace('ciblage'); @@ -28,7 +31,12 @@ class SessionCiblage $this->valeur['NB']['insee'] = $this->insee; $session->ciblage = $this->valeur; } - + + /** + * Enregistre un critère et sa valeur + * @param unknown_type $key + * @param unknown_type $value + */ public function setCritere($key, $value) { if(in_array($key, $this->criteres)) { @@ -37,8 +45,16 @@ class SessionCiblage } } + /** + * Définir les critères en une fois + * @param array $criteres + */ public function setCriteres($criteres){} + /** + * Désactivation d'un critère + * @param unknown_type $key + */ public function unsetCritere($key) { if(key_exists($key, $this->valeur)) { @@ -46,7 +62,11 @@ class SessionCiblage $this->setSession(); } } - + + /** + * Récupération de la valeur d'un critère + * @param unknown_type $key + */ public function getCritere($key) { if(in_array($key, $this->criteres) && in_array($key, $this->valeur)) { @@ -55,17 +75,29 @@ class SessionCiblage return null; } + /** + * Récupération des critères et de leurs valeurs + */ public function getCriteres() { return $this->valeur; } + /** + * Définit un élément de comptage + * @param unknown_type $element + * @param unknown_type $nb + */ public function setNb($element, $nb) { $this->{$element} = $nb; $this->setSession(); } + /** + * Récupére la valeur d'un élément de comptage + * @param unknown_type $element + */ public function getNb($element) { return $this->{$element};