Exemplo n.º 1
0
 /**
  * main action
  */
 public function mainAction()
 {
     //listing
     require_once 'models/ecommerce/ecommerce_product.php';
     $Product = new ecommerce_product();
     //delete product
     //TODO make it safer
     if (is_numeric($this->GET['delete_product_id'])) {
         if ($Product->productDelete($this->GET['delete_product_id'])) {
             msg("Product ID {$this->GET['delete_product_id']} has been deleted");
         } else {
             msg("Cannot delete product ID {$this->GET['delete_product_id']}", 'error');
         }
     }
     //get unfinished products
     if ($unfinished = $Product->getUnfinishedProduct()) {
         foreach ($unfinished as $u) {
             $this->tpl->assign('ITEM', $u);
             $this->tpl->parse('content.unfinished.item');
         }
         $this->tpl->parse('content.unfinished');
     }
     return true;
 }