Go to the documentation of this file.00001 <?php
00002
00008 class Order_Package extends oxAdminDetails
00009 {
00017 public function render()
00018 {
00019 $myConfig = $this->getConfig();
00020 parent::render();
00021
00022 $aOrders = oxNew('oxlist');
00023 $aOrders->init('oxorder');
00024 $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" );
00025
00026 $this->_aViewData['resultset'] = $aOrders;
00027
00028 return "order_package.tpl";
00029 }
00030 }