本文整理汇总了PHP中shopFunctionsF::getOrderStatusName方法的典型用法代码示例。如果您正苦于以下问题:PHP shopFunctionsF::getOrderStatusName方法的具体用法?PHP shopFunctionsF::getOrderStatusName怎么用?PHP shopFunctionsF::getOrderStatusName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类shopFunctionsF
的用法示例。
在下文中一共展示了shopFunctionsF::getOrderStatusName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
echo shopFunctionsF::getInvoiceDownloadButton($row);
?>
</td>
<td align="left">
<?php
echo vmJsApi::date($row->created_on, 'LC4', true);
?>
</td>
<!--td align="left">
<?php
//echo vmJsApi::date($row->modified_on,'LC3',true);
?>
</td -->
<td align="left">
<?php
echo shopFunctionsF::getOrderStatusName($row->order_status);
?>
</td>
<td align="left">
<?php
echo $this->currency->priceDisplay($row->order_total, $row->currency);
?>
</td>
</tr>
<?php
$k = 1 - $k;
}
?>
</table>
</div>
<?php
示例2: getOrderStatusName
/**
* proxy function going to be
* @deprecated use shopFunctionsF::getOrderStatusName instead
* @param char $_code Order status code
* @return string The name of the order status
*/
public static function getOrderStatusName($_code)
{
if (!class_exists('ShopFunctionsF')) {
require VMPATH_SITE . DS . 'helpers' . DS . 'shopfunctionsf.php';
}
return shopFunctionsF::getOrderStatusName($_code);
}