32 lines
894 B
PHP
32 lines
894 B
PHP
<?php
|
|
|
|
/* SSL Management */
|
|
$useSSL = true;
|
|
|
|
include(dirname(__FILE__).'/config/config.inc.php');
|
|
include(dirname(__FILE__).'/init.php');
|
|
|
|
if (!$cookie->isLogged())
|
|
Tools::redirect('authentication.php?back=history.php');
|
|
|
|
/* JS files call */
|
|
$js_files = array(__PS_BASE_URI__.'js/jquery/jquery.scrollto.js', _THEME_JS_DIR_.'history.js');
|
|
|
|
if ($orders = Order::getCustomerOrders(intval($cookie->id_customer)))
|
|
foreach ($orders AS &$order)
|
|
{
|
|
$myOrder = new Order(intval($order['id_order']));
|
|
if (Validate::isLoadedObject($myOrder))
|
|
$order['virtual'] = $myOrder->isVirtual(false);
|
|
}
|
|
|
|
include(dirname(__FILE__).'/header.php');
|
|
$smarty->assign(array(
|
|
'orders' => $orders,
|
|
'invoiceAllowed' => intval(Configuration::get('PS_INVOICE')),
|
|
'slowValidation' => Tools::isSubmit('slowvalidation')));
|
|
$smarty->display(_PS_THEME_DIR_.'history.tpl');
|
|
include(dirname(__FILE__).'/footer.php');
|
|
|
|
?>
|