本文整理匯總了PHP中osC_Order::getLastPublicStatus方法的典型用法代碼示例。如果您正苦於以下問題:PHP osC_Order::getLastPublicStatus方法的具體用法?PHP osC_Order::getLastPublicStatus怎麽用?PHP osC_Order::getLastPublicStatus使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類osC_Order
的用法示例。
在下文中一共展示了osC_Order::getLastPublicStatus方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: while
if (osC_Order::numberOfEntries() > 0) {
$Qhistory = osC_Order::getListing(MAX_DISPLAY_ORDER_HISTORY);
while ($Qhistory->next()) {
if (!osc_empty($Qhistory->value('delivery_name'))) {
$order_type = $osC_Language->get('order_shipped_to');
$order_name = $Qhistory->value('delivery_name');
} else {
$order_type = $osC_Language->get('order_billed_to');
$order_name = $Qhistory->value('billing_name');
}
?>
<div class="moduleBox">
<h6><span style="float: left;"><?php
echo $osC_Language->get('order_status') . ' ' . osC_Order::getLastPublicStatus($Qhistory->value('orders_id'));
?>
</span><?php
echo $osC_Language->get('order_number') . ' ' . $Qhistory->valueInt('orders_id');
?>
</h6>
<div class="content">
<table border="0" width="100%" cellspacing="2" cellpadding="4">
<tr>
<td valign="top"><?php
echo '<b>' . $osC_Language->get('order_date') . '</b> ' . osC_DateTime::getLong($Qhistory->value('date_purchased')) . '<br /><b>' . $order_type . '</b> ' . osc_output_string_protected($order_name);
?>
</td>
<td width="150" valign="top"><?php
echo '<b>' . $osC_Language->get('order_products') . '</b> ' . osC_Order::numberOfProducts($Qhistory->valueInt('orders_id')) . '<br /><b>' . $osC_Language->get('order_cost') . '</b> ' . strip_tags($Qhistory->value('order_total'));