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


PHP WPBMap::getUserCategories方法代码示例

本文整理汇总了PHP中WPBMap::getUserCategories方法的典型用法代码示例。如果您正苦于以下问题:PHP WPBMap::getUserCategories方法的具体用法?PHP WPBMap::getUserCategories怎么用?PHP WPBMap::getUserCategories使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WPBMap的用法示例。


在下文中一共展示了WPBMap::getUserCategories方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: contentCategories

 /**
  * Get list of categories allowed for user.
  *
  * Categories list depends on user policies for shortcodes. If none of allowed shortcodes are in the category, this
  * category not displayed.
  *
  * @return string
  */
 public function contentCategories()
 {
     $output = '<ul class="isotope-filter vc_filter-content-elements"><li class="active"><a href="#" data-filter="*">' . __('Show all', "js_composer") . '</a></li>';
     $_other_category_index = 0;
     $show_other = false;
     foreach (WPBMap::getUserCategories() as $key => $name) {
         if ($name === '_other_category_') {
             $_other_category_index = $key;
             $show_other = true;
         } else {
             $output .= '<li><a href="#" data-filter=".category-' . md5($name) . '">' . __($name, "js_composer") . '</a></li>';
         }
     }
     if ($show_other) {
         $output .= '<li><a href="#" data-filter=".category-' . $_other_category_index . '">' . __('Other', "js_composer") . '</a></li>';
     }
     $output .= '</ul>';
     return apply_filters('vc_add_element_box_categories', $output);
 }
开发者ID:ksan5835,项目名称:rankproperties,代码行数:27,代码来源:class-vc-add-element-box.php

示例2: getCategories

 /**
  * Get categories list from mapping data.
  * @since 4.5
  *
  * @return array
  */
 public function getCategories()
 {
     return WPBMap::getUserCategories();
 }
开发者ID:swc-dng,项目名称:swcsandbox,代码行数:10,代码来源:class-vc-add-element-box.php

示例3: getContentCategoriesLayouts

 public function getContentCategoriesLayouts()
 {
     $output = '<li><ul class="isotope-filter"><li class="active"><a href="#" data-filter="*">' . __('Show all', LANGUAGE_ZONE) . '</a></li>';
     // $output .= '<li><a href="#" data-filter=".category-layout" class="category-layout-filer">'
     //           .__('Layout', LANGUAGE_ZONE).'</a></li>';
     $_other_category_index = 0;
     $show_other = false;
     foreach (WPBMap::getUserCategories() as $key => $name) {
         if ($name === '_other_category_') {
             $_other_category_index = $key;
             $show_other = true;
         } else {
             $output .= '<li><a href="#" data-filter=".category-' . md5($name) . '">' . __($name, LANGUAGE_ZONE) . '</a></li>';
         }
     }
     if ($show_other) {
         $output .= '<li><a href="#" data-filter=".category-' . $_other_category_index . '">' . __('Other', LANGUAGE_ZONE) . '</a></li>';
     }
     //$output .= '<li class="name_filter"><input id="vc_elements_name_filter" type="text" name="vc_content_filter" placeholder="'.__('Search by element name', LANGUAGE_ZONE).'"/></li>';
     $output .= '</ul></li>';
     return $output;
 }
开发者ID:scottnkerr,项目名称:eeco,代码行数:22,代码来源:layouts.php

示例4: getContentCategoriesLayouts

 public function getContentCategoriesLayouts()
 {
     $output = '<li><ul class="isotope-filter"><li class="active"><a href="#" data-filter="*">' . __('Show all', 'js_composer') . '</a></li>';
     // $output .= '<li><a href="#" data-filter=".category-layout" class="category-layout-filer">'
     //           .__('Layout', 'js_composer').'</a></li>';
     $_other_category_index = 0;
     $show_other = false;
     foreach (WPBMap::getUserCategories() as $key => $name) {
         if ($name === '_other_category_') {
             $_other_category_index = $key;
             $show_other = true;
         } else {
             $output .= '<li><a href="#" data-filter=".category-' . $key . '">' . __($name, "js_composer") . '</a></li>';
         }
     }
     if ($show_other) {
         $output .= '<li><a href="#" data-filter=".category-' . $_other_category_index . '">' . __('Other', 'js_composer') . '</a></li>';
     }
     $output .= '</ul></li>';
     return $output;
 }
开发者ID:unisexx,项目名称:drtooth,代码行数:21,代码来源:layouts.php


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