- Timestamp:
- 03/18/2018 09:56:44 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/includes/groups/classes.php
r11856 r11899 3 3 * Groups classes 4 4 * 5 * @since 1.0.05 * @since 3.0.0 6 6 */ 7 7 … … 12 12 * Query to get members that are not already members of the group 13 13 * 14 * @since 1.014 * @since 3.0.0 15 15 */ 16 16 class BP_Nouveau_Group_Invite_Query extends BP_User_Query { … … 19 19 * 20 20 * @var null|array Null if not yet defined, otherwise an array of ints 21 * @since 1.021 * @since 3.0.0 22 22 */ 23 23 protected $group_member_ids; … … 26 26 * Set up action hooks 27 27 * 28 * @since 1.028 * @since 3.0.0 29 29 */ 30 30 public function setup_hooks() { … … 36 36 * Exclude group members from the user query as it's not needed to invite members to join the group. 37 37 * 38 * @since 1.038 * @since 3.0.0 39 39 */ 40 40 public function build_exclude_args() { … … 62 62 * Get the members of the queried group 63 63 * 64 * @since 1.064 * @since 3.0.0 65 65 * 66 66 * @return array $ids User IDs of relevant group member ids … … 106 106 107 107 /** 108 * @since 1.0.0108 * @since 3.0.0 109 109 */ 110 110 public function build_meta_query( BP_User_Query $bp_user_query ) { … … 124 124 125 125 /** 126 * @since 1.0.0126 * @since 3.0.0 127 127 */ 128 128 public static function get_inviter_ids( $user_id = 0, $group_id = 0 ) { … … 143 143 * buddypress()->groups->nav. 144 144 * 145 * @since 1.0.0145 * @since 3.0.0 146 146 */ 147 147 class BP_Nouveau_Customizer_Group_Nav extends BP_Core_Nav { … … 174 174 * Overrides BP_Core_Nav::__isset() to avoid looking into its nav property. 175 175 * 176 * @since 1.0.0176 * @since 3.0.0 177 177 * 178 178 * @param string $key The property. … … 189 189 * Overrides BP_Core_Nav::__isset() to avoid looking into its nav property. 190 190 * 191 * @since 1.0.0191 * @since 3.0.0 192 192 * 193 193 * @param string $key The property. … … 208 208 * Overrides BP_Core_Nav::__isset() to avoid adding a value to its nav property. 209 209 * 210 * @since 1.0.0210 * @since 3.0.0 211 211 * 212 212 * @param string $key The property. … … 221 221 * Setup a temporary nav with only the needed parameters. 222 222 * 223 * @since 1.0.0223 * @since 3.0.0 224 224 */ 225 225 protected function setup_nav() { … … 315 315 * Front template: do not look into group's template hierarchy. 316 316 * 317 * @since 1.0.0317 * @since 3.0.0 318 318 * 319 319 * @param array $templates The list of possible group front templates. … … 331 331 * Get the original order for the group navigation. 332 332 * 333 * @since 1.0.0333 * @since 3.0.0 334 334 * 335 335 * @return array a list of nav items slugs ordered. … … 343 343 * Get the list of nav items ordered according to the Site owner preferences. 344 344 * 345 * @since 1.0.0345 * @since 3.0.0 346 346 * 347 347 * @return array the nav items ordered.
Note: See TracChangeset
for help on using the changeset viewer.