public function init()
 {
     $this->getAuthentication();
     $this->getTranslator();
     $this->getLanguage();
     $this->getTheme();
     $menuFactory = new VC_Business_MenuFactory();
     $listMenu = null;
     if ($this->userId) {
         $listMenu = $menuFactory->getMenuOfUser($this->userId);
     }
     $this->view->userMenu = $listMenu;
 }