Example #1
0
 public function actionIndex()
 {
     $categories = Category::getCategoryList();
     if (!$categories) {
         $categories = array();
     }
     $products = Product::getProductsList(6, 0);
     if (!$products) {
         $products = array();
     }
     $recomendedProducts = Product::getRecomemdedProducts();
     require_once ROOT . '/views/site/index.php';
     return true;
 }