OXID eShop CE
4.9.6
Main Page
Related Pages
Classes
Files
File List
File Members
All
Classes
Files
Functions
Variables
Pages
order_package.php
Go to the documentation of this file.
1
<?php
2
8
class
Order_Package
extends
oxAdminDetails
9
{
10
18
public
function
render
()
19
{
20
$myConfig
= $this->
getConfig
();
21
parent::render
();
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
}
application
controllers
admin
order_package.php
Generated by
1.8.1.2