public function __construct($id, $title = null, $lang = null)
 {
     parent::__construct($id);
     if (isset($title)) {
         $this->setTitle($title);
     }
     $this->setLang($lang);
 }
 public function __construct($id, $title = null, $root_category = null, $lang = null, $use_shop_restriction = true)
 {
     parent::__construct($id);
     if (isset($title)) {
         $this->setTitle($title);
     }
     if (isset($root_category)) {
         $this->setRootCategory($root_category);
     }
     $this->setLang($lang);
     $this->setUseShopRestriction($use_shop_restriction);
 }
 public function __construct($id, $title = null, $root_category = null, $lang = null, $shop = null)
 {
     parent::__construct($id);
     if (isset($title)) {
         $this->setTitle($title);
     }
     if (isset($root_category)) {
         $this->setRootCategory($root_category);
     }
     $this->setLang($lang);
     $this->setShop($shop);
 }
 public function __construct($id, $title = null, $root_category = null, $lang = null, $use_shop_restriction = true)
 {
     parent::__construct($id);
     if (isset($title)) {
         $this->setTitle($title);
     }
     if (isset($root_category)) {
         $this->setRootCategory($root_category);
     }
     $this->setLang($lang);
     $this->setUseShopRestriction($use_shop_restriction);
     $this->_module_template_dir = dirname(__FILE__) . '/../views/templates/admin/';
 }