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