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


PHP BP_Groups_Group::get_by_letter方法代码示例

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


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

示例1: test_get_by_letter_starts_with_apostrophe

 public function test_get_by_letter_starts_with_apostrophe()
 {
     $g1 = $this->factory->group->create(array('name' => "'Tis Sweet", 'description' => 'Neat'));
     $g2 = $this->factory->group->create(array('name' => 'Another Cool Group', 'description' => 'Awesome'));
     $groups = BP_Groups_Group::get_by_letter("'");
     $found = wp_list_pluck($groups['groups'], 'id');
     // @todo
     // The test fails but at least it's sanitized
     //$this->assertEquals( array( $g1->id ), $found );
 }
开发者ID:swissspidy,项目名称:BuddyPress,代码行数:10,代码来源:class-bp-groups-group.php

示例2: bp_groups_site_groups_template

 function bp_groups_site_groups_template($type, $per_page, $max)
 {
     global $bp;
     $this->pag_page = isset($_REQUEST['gpage']) ? intval($_REQUEST['gpage']) : 1;
     $this->pag_num = isset($_REQUEST['num']) ? intval($_REQUEST['num']) : $per_page;
     if (isset($_REQUEST['s']) && '' != $_REQUEST['s'] && $type != 'random') {
         $this->groups = BP_Groups_Group::search_groups($_REQUEST['s'], $this->pag_num, $this->pag_page);
     } else {
         if (isset($_REQUEST['letter']) && '' != $_REQUEST['letter']) {
             $this->groups = BP_Groups_Group::get_by_letter($_REQUEST['letter'], $this->pag_num, $this->pag_page);
         } else {
             switch ($type) {
                 case 'random':
                     $this->groups = BP_Groups_Group::get_random($this->pag_num, $this->pag_page);
                     break;
                 case 'newest':
                     $this->groups = BP_Groups_Group::get_newest($this->pag_num, $this->pag_page);
                     break;
                 case 'popular':
                     $this->groups = BP_Groups_Group::get_popular($this->pag_num, $this->pag_page);
                     break;
                 case 'active':
                 default:
                     $this->groups = BP_Groups_Group::get_active($this->pag_num, $this->pag_page);
                     break;
             }
         }
     }
     if (!$max) {
         $this->total_group_count = (int) $this->groups['total'];
     } else {
         $this->total_group_count = (int) $max;
     }
     $this->groups = $this->groups['groups'];
     if ($max) {
         if ($max >= count($this->groups)) {
             $this->group_count = count($this->groups);
         } else {
             $this->group_count = (int) $max;
         }
     } else {
         $this->group_count = count($this->groups);
     }
     $this->pag_links = paginate_links(array('base' => add_query_arg('gpage', '%#%'), 'format' => '', 'total' => ceil((int) $this->total_group_count / (int) $this->pag_num), 'current' => (int) $this->pag_page, 'prev_text' => '«', 'next_text' => '»', 'mid_size' => 1));
 }
开发者ID:alvaropereyra,项目名称:shrekcms,代码行数:45,代码来源:bp-groups-templatetags.php


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