Changeset 10148 for trunk/src/bp-groups/bp-groups-activity.php
- Timestamp:
- 09/27/2015 05:25:02 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-activity.php
r9906 r10148 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Groups Activity Functions. … … 11 10 */ 12 11 13 // Exit if accessed directly 12 // Exit if accessed directly. 14 13 defined( 'ABSPATH' ) || exit; 15 14 … … 79 78 * Fires at end of registration of the default activity actions for the Groups component. 80 79 * 81 * @since BuddyPress (1.1.0)80 * @since 1.1.0 82 81 */ 83 82 do_action( 'groups_register_activity_actions' ); … … 88 87 * Format 'created_group' activity actions. 89 88 * 90 * @since BuddyPress (2.0.0)89 * @since 2.0.0 91 90 * 92 91 * @param string $action Static activity action. … … 109 108 * Filters the 'created_group' activity actions. 110 109 * 111 * @since BuddyPress (1.2.0)110 * @since 1.2.0 112 111 * 113 112 * @param string $action The 'created_group' activity action. … … 120 119 * Format 'joined_group' activity actions. 121 120 * 122 * @since BuddyPress (2.0.0)121 * @since 2.0.0 123 122 * 124 123 * @param string $action Static activity action. … … 152 151 * Filters the 'joined_group' activity actions. 153 152 * 154 * @since BuddyPress (2.0.0)153 * @since 2.0.0 155 154 * 156 155 * @param string $action The 'joined_group' activity actions. … … 163 162 * Format 'group_details_updated' activity actions. 164 163 * 165 * @since BuddyPress (2.2.0)164 * @since 2.2.0 166 165 * 167 166 * @param string $action Static activity action. … … 206 205 * Filters the 'group_details_updated' activity actions. 207 206 * 208 * @since BuddyPress (2.0.0)207 * @since 2.0.0 209 208 * 210 209 * @param string $action The 'group_details_updated' activity actions. … … 219 218 * This reduces database overhead during the activity loop. 220 219 * 221 * @since BuddyPress (2.0.0)220 * @since 2.0.0 222 221 * 223 222 * @param array $activities Array of activity items. … … 270 269 * Set up activity arguments for use with the 'groups' scope. 271 270 * 272 * @since BuddyPress (2.2.0)271 * @since 2.2.0 273 272 * 274 273 * @param array $retval Empty array by default … … 416 415 * Add an activity stream item when a member joins a group. 417 416 * 418 * @since BuddyPress (1.9.0)417 * @since 1.9.0 419 418 * 420 419 * @param int $user_id ID of the user joining the group. … … 436 435 * Filters the 'membership_accepted' activity actions. 437 436 * 438 * @since BuddyPress (1.2.0)437 * @since 1.2.0 439 438 * 440 439 * @param string $value The 'membership_accepted' activity action. … … 457 456 * Add an activity item when a group's details are updated. 458 457 * 459 * @since BuddyPress (2.2.0)458 * @since 2.2.0 460 459 * 461 460 * @param int $group_id ID of the group. … … 530 529 * Delete all activity items related to a specific group. 531 530 * 532 * @since BuddyPress (1.9.0)531 * @since 1.9.0 533 532 * 534 533 * @param int $group_id ID of the group. … … 551 550 * joining/leaving the group in quick succession. 552 551 * 553 * @since BuddyPress (1.9.0)552 * @since 1.9.0 554 553 * 555 554 * @param int $group_id ID of the group.
Note: See TracChangeset
for help on using the changeset viewer.