本文整理汇总了PHP中CCatalogDiscount::__GetDiscountID方法的典型用法代码示例。如果您正苦于以下问题:PHP CCatalogDiscount::__GetDiscountID方法的具体用法?PHP CCatalogDiscount::__GetDiscountID怎么用?PHP CCatalogDiscount::__GetDiscountID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CCatalogDiscount
的用法示例。
在下文中一共展示了CCatalogDiscount::__GetDiscountID方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetRestrictions
public function GetRestrictions($arParams, $boolKeys = true)
{
$boolKeys = !!$boolKeys;
if (!is_array($arParams) || empty($arParams)) {
return array();
}
$arFilter = array('RESTRICTIONS' => true);
if (isset($arParams['USER_GROUPS']) && !empty($arParams['USER_GROUPS'])) {
$arFilter['USER_GROUP_ID'] = $arParams['USER_GROUPS'];
}
if (isset($arParams['PRICE_TYPES']) && !empty($arParams['PRICE_TYPES'])) {
$arFilter['PRICE_TYPE_ID'] = $arParams['PRICE_TYPES'];
}
if ($boolKeys) {
return CCatalogDiscount::__GetDiscountID($arFilter);
} else {
$arResult = CCatalogDiscount::__GetDiscountID($arFilter);
if (!empty($arResult) && !empty($arResult['RESTRICTIONS'])) {
foreach ($arResult['RESTRICTIONS'] as &$arOneDiscount) {
$arOneDiscount['USER_GROUP'] = array_keys($arOneDiscount['USER_GROUP']);
$arOneDiscount['PRICE_TYPE'] = array_keys($arOneDiscount['PRICE_TYPE']);
}
if (isset($arOneDiscount)) {
unset($arOneDiscount);
}
}
return $arResult;
}
}