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