OXID eShop CE  4.9.6
 All Classes Files Functions Variables Pages
order_package.php
Go to the documentation of this file.
1 <?php
2 
9 {
10 
18  public function render()
19  {
20  $myConfig = $this->getConfig();
22 
23  $aOrders = oxNew('oxlist');
24  $aOrders->init('oxorder');
25  $sSql = "select * from oxorder where oxorder.oxsenddate = '0000-00-00 00:00:00' and oxorder.oxshopid = '" .
26  $myConfig->getShopId() . "' order by oxorder.oxorderdate asc limit 5000";
27  $aOrders->selectString($sSql);
28 
29  $this->_aViewData['resultset'] = $aOrders;
30 
31  return "order_package.tpl";
32  }
33 }