OXID eShop CE  4.8.12
 All Classes Files Functions Variables Pages
oxid.php
Go to the documentation of this file.
1 <?php
2 
6 class Oxid
7 {
15  static public function run()
16  {
17  $oShopControl = oxNew('oxShopControl');
18  return $oShopControl->start();
19  }
20 
28  static public function runWidget()
29  {
30  $oWidgetControl = oxNew('oxWidgetControl');
31  return $oWidgetControl->start();
32  }
33 }