Changeset 11447 for trunk/src/bp-groups/bp-groups-activity.php
- Timestamp:
- 03/04/2017 06:26:55 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-groups/bp-groups-activity.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-activity.php
r11091 r11447 19 19 * @since 1.1.0 20 20 * 21 * @return bool|null False on failure.21 * @return false|null False on failure. 22 22 */ 23 23 function groups_register_activity_actions() { … … 338 338 * public, otherwise false. 339 339 * } 340 * @return boolSee {@link bp_activity_add()}.340 * @return WP_Error|bool|int See {@link bp_activity_add()}. 341 341 */ 342 342 function groups_record_activity( $args = '' ) { … … 385 385 * @param int $group_id Optional. The ID of the group whose last_activity is 386 386 * being updated. Default: the current group's ID. 387 * @return bool|null False on failure.387 * @return false|null False on failure. 388 388 */ 389 389 function groups_update_last_activity( $group_id = 0 ) { … … 412 412 * @param int $user_id ID of the user joining the group. 413 413 * @param int $group_id ID of the group. 414 * @return bool|null False on failure.414 * @return false|null False on failure. 415 415 */ 416 416 function bp_groups_membership_accepted_add_activity( $user_id, $group_id ) { … … 453 453 * @param BP_Groups_Group $old_group Group object before the details had been changed. 454 454 * @param bool $notify_members True if the admin has opted to notify group members, otherwise false. 455 * @return int|boolThe ID of the activity on success. False on error.455 * @return null|WP_Error|bool|int The ID of the activity on success. False on error. 456 456 */ 457 457 function bp_groups_group_details_updated_add_activity( $group_id, $old_group, $notify_members ) {
Note: See TracChangeset
for help on using the changeset viewer.