本文整理汇总了PHP中CSaleBasketHelper::reSortItems方法的典型用法代码示例。如果您正苦于以下问题:PHP CSaleBasketHelper::reSortItems方法的具体用法?PHP CSaleBasketHelper::reSortItems怎么用?PHP CSaleBasketHelper::reSortItems使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CSaleBasketHelper
的用法示例。
在下文中一共展示了CSaleBasketHelper::reSortItems方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getMeasures
if (CSaleBasketHelper::isSetParent($arBasket) || CSaleBasketHelper::isSetItem($arBasket))
{
$parentItemFound = true;
}
}
}
if (!empty($arBasketItem)) // measures and ratio
{
$arBasketItem = getMeasures($arBasketItem);
$arBasketItem = getRatio($arBasketItem);
}
if ($parentItemFound === true && !empty($arBasketItem) && is_array($arBasketItem))
{
$arBasketItem = CSaleBasketHelper::reSortItems($arBasketItem, true);
}
$arProductData = array();
$arIblockProps = array();
$arTmpColumns = array();
$arColumnsOptions = CUserOptions::GetOption("order_basket_table", "table_columns");
$arCustomSelectFields = array();
if ($arColumnsOptions)
{
$arTmpColumns = explode(",", $arColumnsOptions["columns"]);
$count = 0;
foreach ($arTmpColumns as $id => $columnCode)
{
示例2: floatval
$orderTotalPrice += ($arBasketTmp["PRICE"] + $arBasketTmp["DISCOUNT_PRICE"]) * $arBasketTmp["QUANTITY"];
if (!CSaleBasketHelper::isSetParent($arBasketTmp))
{
$orderTotalWeight += floatval($arBasketTmp["WEIGHT"] * $arBasketTmp["QUANTITY"]);
}
if (CSaleBasketHelper::isSetParent($arBasketTmp) || CSaleBasketHelper::isSetItem($arBasketTmp))
{
$parentItemFound = true;
}
}
if ($parentItemFound === true && !empty($arBasketItems) && is_array($arBasketItems))
{
$arBasketItems = CSaleBasketHelper::reSortItems($arBasketItems);
}
?>
<style type="text/css">
.bx-adm-bigdata-icon-medium-inner{
position: relative;
top: -5px;
display: block;
width:24px;
height: 24px;
background: url('/bitrix/panel/main/images/icons-sprite-7.png') no-repeat center -2176px;
float: left;
margin-right: 10px;
}
</style>