From 0c3ea7d45fa32bb68b1be76dcf49fb2a1c42f0cf Mon Sep 17 00:00:00 2001
From: gloas <gloas@git-test.afi-sa.fr>
Date: Wed, 20 Nov 2013 14:46:36 +0000
Subject: [PATCH] refacto method hasBoite

---
 library/Class/Profil.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/library/Class/Profil.php b/library/Class/Profil.php
index 3d163d1a5ab..bcabb2dfbc2 100644
--- a/library/Class/Profil.php
+++ b/library/Class/Profil.php
@@ -1656,8 +1656,14 @@ class Class_Profil extends Storm_Model_Abstract {
 
 	public function hasBoitePanier() {
 		return $this->recursive_array_search_boite('PANIER', $this->getCfgAccueilAsArray()['modules']);
+		return $this->hasBoite('PANIER');
 	}
 
+
+	public function hasBoite($type) {
+		return $this->recursive_array_search_boite($type, $this->getCfgAccueilAsArray()['modules']);
+ 	}
+
 	
 	public function getBoiteId($boite) {
 	  return $this->recursive_array_search_boite_id($boite, $this->getCfgAccueilAsArray()['modules']);
-- 
GitLab