diff --git a/library/Class/Profil.php b/library/Class/Profil.php index 3d163d1a5abf1032a540b957df0305d141a97cfb..bcabb2dfbc21848f3a89fa44530893d5b604d104 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']);