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