Bp_Search_bbPress_Replies
BuddyPress Global Search – search bbpress forums replies class
Description
Source
File: bp-search/classes/class-bp-search-bbpress-forums-replies.php
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | class Bp_Search_bbPress_Replies extends Bp_Search_bbPress { public $type = 'reply' ; function sql( $search_term , $only_totalrow_count =false ){ global $wpdb ; $bp_prefix = bp_core_get_table_prefix(); $query_placeholder = array (); if ( $only_totalrow_count ){ $columns = " COUNT( DISTINCT id ) " ; } else { $columns = " DISTINCT id , '{$this->type}' as type, post_title LIKE %s AS relevance, post_date as entry_date " ; $query_placeholder [] = '%' . $search_term . '%' ; } $from = "{$wpdb->posts} p LEFT JOIN {$wpdb->postmeta} pm ON pm.post_id = p.ID AND pm.meta_key = '_bbp_forum_id'" ; $group_memberships = '' ; if ( bp_is_active( 'groups' ) ) { $group_memberships = bp_get_user_groups( get_current_user_id(), array ( 'is_admin' => null, 'is_mod' => null, ) ); } $group_query = '' ; if ( ! empty ( $group_memberships ) ) { $in = array_reduce ( array_keys ( $group_memberships ), function ( $carry , $group_id ) { return $carry . ',\'' . maybe_serialize( [ $group_id ] ) . '\'' ; } ); $group_query = ' pm.meta_value IN ( SELECT post_id FROM ' . $wpdb ->postmeta . ' WHERE meta_key = \'_bbp_group_ids\' AND meta_value IN(' . trim( $in , ',' ) . ') ) OR ' ; } if ( current_user_can( 'read_hidden_forums' ) ) { $post_status = [ "'publish'" , "'private'" , "'hidden'" ]; } elseif ( current_user_can( 'read_private_forums' ) ) { $post_status = [ "'publish'" , "'private'" ]; } else { $post_status = [ "'publish'" ]; } $where = array (); $where [] = "1=1" ; $where [] = "(post_title LIKE %s OR {$bp_prefix}bp_strip_tags(post_content) LIKE %s)" ; $where [] = "post_type = '{$this->type}'" ; $where [] = '(' . $group_query . ' pm.meta_value IN ( SELECT ID FROM ' . $wpdb->posts . ' WHERE post_type = \ 'forum\' AND post_status IN (' . join( ',' , $post_status ) . ') ) )'; $query_placeholder [] = '%' . $search_term . '%' ; $query_placeholder [] = '%' . $search_term . '%' ; $sql = 'SELECT ' . $columns . ' FROM ' . $from . ' WHERE ' . implode( ' AND ' , $where ); $query = $wpdb ->prepare( $sql , $query_placeholder ); return apply_filters( 'Bp_Search_Forums_sql' , $query , array ( 'search_term' => $search_term , 'only_totalrow_count' => $only_totalrow_count , ) ); } /** * Insures that only one instance of Class exists in memory at any * one time. Also prevents needing to define globals all over the place. * * @since BuddyBoss 1.0.0 * * @return object Bp_Search_Forums */ public static function instance() { // Store the instance locally to avoid private static replication static $instance = null; // Only run these methods if they haven't been run previously if (null === $instance ) { $instance = new Bp_Search_bbPress_Replies(); } // Always return the instance return $instance ; } /** * A dummy constructor to prevent this class from being loaded more than once. * * @since BuddyBoss 1.0.0 */ private function __construct() { /* Do nothing here */ } } |
Methods
- __construct — A dummy constructor to prevent this class from being loaded more than once.
- instance — Insures that only one instance of Class exists in memory at any one time. Also prevents needing to define globals all over the place.
- sql
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.