本文整理汇总了PHP中BFCHelper::setEnabledFilterSearchParamsSession方法的典型用法代码示例。如果您正苦于以下问题:PHP BFCHelper::setEnabledFilterSearchParamsSession方法的具体用法?PHP BFCHelper::setEnabledFilterSearchParamsSession怎么用?PHP BFCHelper::setEnabledFilterSearchParamsSession使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BFCHelper
的用法示例。
在下文中一共展示了BFCHelper::setEnabledFilterSearchParamsSession方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getSearchResults
//.........这里部分代码省略.........
// $tmpbookingtype = array_unique(array_map(function ($i) { return $i->BookingType; }, $results));
// $tmpbookingtype = array_unique(array_map(function ($i) { return $i->IsBookable; }, $results));
// foreach( $tmpbookingtype as $key => $value ) {
// if( empty( $tmpbookingtype[ $key ] ) )
// unset( $tmpbookingtype[ $key ] );
// }
// $filtersenabled['bookingtypes'] = implode(',',$tmpbookingtype);
$filtersenabled['bookingtypes'] = array_count_values(array_filter(array_map(function ($i) {
return intval($i->IsBookable);
}, $results)));
// $tmpoffers = array_unique(array_map(function ($i) { return $i->TotalPrice>$i->Price; }, $results));
// $tmpoffers = array_unique(array_map(function ($i) { return !empty($i->DiscountId); }, $results));
// $tmpoffers = array_unique(array_map(function ($i) { return $i->IsOffer; }, $results));
// foreach( $tmpoffers as $key => $value ) {
// if( empty( $tmpoffers[ $key ] ) )
// unset( $tmpoffers[ $key ] );
// }
// $filtersenabled['offers'] = implode(',',$tmpoffers);
$tmpoffers = array_count_values(array_filter(array_map(function ($i) {
return intval($i->IsOffer && $i->TotalPrice > $i->Price);
}, $results)));
$filtersenabled['offers'] = $tmpoffers;
$prices = array_map(function ($i) {
return $i->Price;
}, array_filter($results, function ($rs) {
return !$rs->IsCatalog;
}));
// $prices = array_map(function ($i) { return $i->Price; }, $results) ;
if (!empty($prices)) {
$filtersenabled['pricemin'] = round(min($prices) - 1, 0, PHP_ROUND_HALF_DOWN);
$filtersenabled['pricemax'] = round(max($prices) + 1, 0, PHP_ROUND_HALF_UP);
}
}
BFCHelper::setEnabledFilterSearchParamsSession($filtersenabled);
}
$results = $this->filterResults($results);
// ordering is taking place here only for simple results, merchants are ordered by the grouping function
if (!empty($results)) {
if (isset($ordering) && !$merchantResults) {
$catValues = array();
foreach ($results as $key => $row) {
$catValues[$key] = $row->IsCatalog;
}
switch (strtolower($ordering)) {
case 'stay':
$pricesValues = array();
foreach ($results as $key => $row) {
$pricesValues[$key] = $row->TotalPrice;
}
array_multisort($catValues, SORT_ASC, $pricesValues, $direction == 'desc' ? SORT_DESC : SORT_ASC, $results);
// usort($results, function($a,$b) use ( $ordering, $direction) {
// return BFCHelper::orderBy($a, $b, 'TotalPrice', $direction);
// });
break;
case 'rooms':
$RoomsValues = array();
foreach ($results as $key => $row) {
$RoomsValues[$key] = $row->Rooms;
}
array_multisort($catValues, SORT_ASC, $RoomsValues, $direction == 'desc' ? SORT_DESC : SORT_ASC, $results);
// usort($results, function($a,$b) use ( $ordering, $direction) {
// return BFCHelper::orderBy($a, $b, 'Rooms', $direction);
// });
break;
case 'offer':
$discountValues = array();