当前位置: 首页>>代码示例>>PHP>>正文


PHP BFCHelper::getMerchantCategoriesForRequest方法代码示例

本文整理汇总了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);
 }
开发者ID:Bookingfor,项目名称:joomla-extension-v-2,代码行数:18,代码来源:BFCHelper.php

示例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);
开发者ID:Bookingfor,项目名称:joomla-extension-v-2,代码行数:31,代码来源:default.php


注:本文中的BFCHelper::getMerchantCategoriesForRequest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。