BP_Activity_Activity::get_scope_query_sql( mixed $scope = false, array $r = array() )

Get the SQL for the ‘scope’ param in BP_Activity_Activity::get().

Description

A scope is a predetermined set of activity arguments. This method is used to grab these activity arguments and override any existing args if needed.

Can handle multiple scopes.

Parameters

$scope

(Optional) The activity scope. Accepts string or array of scopes.

Default value: false

$r

(Optional) Current activity arguments. Same as those of BP_Activity_Activity::get(), but merged with defaults.

Default value: array()

Return

(false|array) 'sql' WHERE SQL string and 'override' activity args.

Source

File: bp-activity/classes/class-bp-activity-activity.php

1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
public static function get_scope_query_sql( $scope = false, $r = array() ) {
 
    // Define arrays for future use.
    $query_args = array();
    $override   = array();
    $retval     = array();
 
    // Check for array of scopes.
    if ( is_array( $scope ) ) {
        $scopes = $scope;
 
        // Explode a comma separated string of scopes.
    } elseif ( is_string( $scope ) ) {
        $scopes = explode( ',', $scope );
    }
 
    // Bail if no scope passed.
    if ( empty( $scopes ) ) {
        return false;
    }
 
    // Helper to easily grab the 'user_id'.
    if ( ! empty( $r['filter']['user_id'] ) ) {
        $r['user_id'] = $r['filter']['user_id'];
    }
 
    // Parse each scope; yes! we handle multiples!
    foreach ( $scopes as $scope ) {
        $scope_args = array();
 
        /**
         * Plugins can hook here to set their activity arguments for custom scopes.
         *
         * This is a dynamic filter based on the activity scope. eg:
         *   - 'bp_activity_set_groups_scope_args'
         *   - 'bp_activity_set_friends_scope_args'
         *
         * To see how this filter is used, plugin devs should check out:
         *   - bp_groups_filter_activity_scope() - used for 'groups' scope
         *   - bp_friends_filter_activity_scope() - used for 'friends' scope
         *
         * @since BuddyPress 2.2.0
         *
         * @param array {
         *     Activity query clauses.
         *     @type array {
         *         Activity arguments for your custom scope.
         *         See {@link BP_Activity_Query::_construct()} for more details.
         *     }
         *     @type array  $override Optional. Override existing activity arguments passed by $r.
         *     }
         * }
         * @param array $r Current activity arguments passed in BP_Activity_Activity::get().
         */
        $scope_args = apply_filters( "bp_activity_set_{$scope}_scope_args", array(), $r );
 
        if ( ! empty( $scope_args ) ) {
            // Merge override properties from other scopes
            // this might be a problem...
            if ( ! empty( $scope_args['override'] ) ) {
                $override = array_merge( $override, $scope_args['override'] );
                unset( $scope_args['override'] );
            }
 
            // Save scope args.
            if ( ! empty( $scope_args ) ) {
                $query_args[] = $scope_args;
            }
        }
    }
 
    if ( ! empty( $query_args ) ) {
        // Set relation to OR.
        $query_args['relation'] = 'OR';
 
        $query = new BP_Activity_Query( $query_args );
        $sql   = $query->get_sql();
        if ( ! empty( $sql ) ) {
            $retval['sql'] = $sql;
        }
    }
 
    if ( ! empty( $override ) ) {
        $retval['override'] = $override;
    }
 
    return $retval;
}

Changelog

Changelog
Version Description
BuddyPress 2.2.0 Introduced.

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.