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