本文整理汇总了PHP中BFCHelper::getMerchantCategoriesForRequest方法的典型用法代码示例。如果您正苦于以下问题:PHP BFCHelper::getMerchantCategoriesForRequest方法的具体用法?PHP BFCHelper::getMerchantCategoriesForRequest怎么用?PHP BFCHelper::getMerchantCategoriesForRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BFCHelper
的用法示例。
在下文中一共展示了BFCHelper::getMerchantCategoriesForRequest方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getCategoryMerchantResults
public static function getCategoryMerchantResults($language = '')
{
// if (self::isMerchantBehaviour()) {
// return array();
// }
$groupOnSearch = array();
$merchantCategories = BFCHelper::getMerchantCategoriesForRequest($language);
if (!empty($merchantCategories)) {
$groupOnSearch = array_unique(array_map(function ($i) {
if ($i->GroupOnSearch) {
return $i->MerchantCategoryId;
}
return 0;
}, $merchantCategories));
}
return $groupOnSearch;
//return array(COM_BOOKINGFORCONNECTOR_CATEGORIES_GROUPING_RESULT_INTO_MERCHANT);
}
示例2: array
$paxages = $pars['paxages'];
}
if ($pars['checkout'] == null) {
$checkout->modify($checkoutspan);
}
if (!empty($pars['zoneId'])) {
$zoneId = $pars['zoneId'];
}
if (!empty($pars['bookableonly'])) {
$bookableonly = $pars['bookableonly'];
}
}
if ($checkin == $checkout) {
$checkout->modify($checkoutspan);
}
$merchantCategories = BFCHelper::getMerchantCategoriesForRequest($language);
$listmerchantCategories = array();
$listmerchantCategories[] = JHTML::_('select.option', 0, JTEXT::_('MOD_BOOKINGFORSEARCH_SELECT'));
if (!empty($merchantCategories)) {
foreach ($merchantCategories as $mc) {
$listmerchantCategories[] = JHTML::_('select.option', $mc->MerchantCategoryId, $mc->Name);
}
}
$persons = array(JHTML::_('select.option', '1', JText::_('1')), JHTML::_('select.option', '2', JText::_('2')), JHTML::_('select.option', '3', JText::_('3')), JHTML::_('select.option', '4', JText::_('4')), JHTML::_('select.option', '5', JText::_('5')), JHTML::_('select.option', '6', JText::_('6')), JHTML::_('select.option', '7', JText::_('7')), JHTML::_('select.option', '8', JText::_('8')), JHTML::_('select.option', '9', JText::_('9')), JHTML::_('select.option', '10', JText::_('10')));
$nad = 0;
if (empty($paxages)) {
$nad = 2;
}
$nch = 0;
$nse = 0;
$countPaxes = array_count_values($paxages);