buddypress/bp-friends/bp-friends-activity.php
Boone B Gorges 672392668c Improve inline docs in bp-friends. See #5022
git-svn-id: https://buddypress.svn.wordpress.org/trunk@7556 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2013-11-10 02:43:45 +00:00

159 lines
5.5 KiB
PHP

<?php
/**
* BuddyPress Friends Activity Functions
*
* These functions handle the recording, deleting and formatting of activity
* for the user and for this specific component.
*
* @package BuddyPress
* @subpackage FriendsActivity
*/
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) exit;
/**
* Record an activity item related to the Friends component.
*
* A wrapper for {@link bp_activity_add()} that provides some Friends-specific
* defaults.
*
* @see bp_activity_add() for more detailed description of parameters and
* return values.
*
* @param array $args {
* An array of arguments for the new activity item. Accepts all parameters
* of {@link bp_activity_add()}. The one difference is the following
* argument, which has a different default here:
* @type string $component Default: the id of your Friends component
* (usually 'friends').
* }
* @return bool See {@link bp_activity_add()}.
*/
function friends_record_activity( $args = '' ) {
global $bp;
if ( !bp_is_active( 'activity' ) )
return false;
$defaults = array (
'user_id' => bp_loggedin_user_id(),
'action' => '',
'content' => '',
'primary_link' => '',
'component' => $bp->friends->id,
'type' => false,
'item_id' => false,
'secondary_item_id' => false,
'recorded_time' => bp_core_current_time(),
'hide_sitewide' => false
);
$r = wp_parse_args( $args, $defaults );
extract( $r, EXTR_SKIP );
return bp_activity_add( array( 'user_id' => $user_id, 'action' => $action, 'content' => $content, 'primary_link' => $primary_link, 'component' => $component, 'type' => $type, 'item_id' => $item_id, 'secondary_item_id' => $secondary_item_id, 'recorded_time' => $recorded_time, 'hide_sitewide' => $hide_sitewide ) );
}
/**
* Delete an activity item related to the Friends component.
*
* @param array $args {
* An array of arguments for the item to delete.
* @type int $item_id ID of the 'item' associated with the activity item.
* For Friends activity items, this is usually the user ID of one
* of the friends.
* @type string $type The 'type' of the activity item (eg
* 'friendship_accepted').
* @type int $user_id ID of the user associated with the activity item.
* }
* @return bool True on success, false on failure.
*/
function friends_delete_activity( $args ) {
global $bp;
if ( bp_is_active( 'activity' ) ) {
extract( (array) $args );
bp_activity_delete_by_item_id( array( 'item_id' => $item_id, 'component' => $bp->friends->id, 'type' => $type, 'user_id' => $user_id ) );
}
}
/**
* Register the activity actions for bp-friends.
*/
function friends_register_activity_actions() {
global $bp;
if ( !bp_is_active( 'activity' ) )
return false;
// These two added in BP 1.6
bp_activity_set_action( $bp->friends->id, 'friendship_accepted', __( 'Friendships accepted', 'buddypress' ) );
bp_activity_set_action( $bp->friends->id, 'friendship_created', __( 'New friendships', 'buddypress' ) );
// < BP 1.6 backpat
bp_activity_set_action( $bp->friends->id, 'friends_register_activity_action', __( 'New friendship created', 'buddypress' ) );
do_action( 'friends_register_activity_actions' );
}
add_action( 'bp_register_activity_actions', 'friends_register_activity_actions' );
/**
* Notification formatting callback for bp-friends notifications.
*
* @param string $action The kind of notification being rendered.
* @param int $item_id The primary item ID.
* @param int $secondary_item_id The secondary item ID.
* @param int $total_items The total number of messaging-related notifications
* waiting for the user.
* @param string $format 'string' for BuddyBar-compatible notifications;
* 'array' for WP Toolbar. Default: 'string'.
* @return array|string
*/
function friends_format_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
switch ( $action ) {
case 'friendship_accepted':
$link = trailingslashit( bp_loggedin_user_domain() . bp_get_friends_slug() . '/my-friends' );
// Set up the string and the filter
if ( (int) $total_items > 1 ) {
$text = sprintf( __( '%d friends accepted your friendship requests', 'buddypress' ), (int) $total_items );
$filter = 'bp_friends_multiple_friendship_accepted_notification';
} else {
$text = sprintf( __( '%s accepted your friendship request', 'buddypress' ), bp_core_get_user_displayname( $item_id ) );
$filter = 'bp_friends_single_friendship_accepted_notification';
}
break;
case 'friendship_request':
$link = bp_loggedin_user_domain() . bp_get_friends_slug() . '/requests/?new';
// Set up the string and the filter
if ( (int) $total_items > 1 ) {
$text = sprintf( __( 'You have %d pending friendship requests', 'buddypress' ), (int) $total_items );
$filter = 'bp_friends_multiple_friendship_request_notification';
} else {
$text = sprintf( __( 'You have a friendship request from %s', 'buddypress' ), bp_core_get_user_displayname( $item_id ) );
$filter = 'bp_friends_single_friendship_request_notification';
}
break;
}
// Return either an HTML link or an array, depending on the requested format
if ( 'string' == $format ) {
$return = apply_filters( $filter, '<a href="' . $link . '">' . $text . '</a>', (int) $total_items );
} else {
$return = apply_filters( $filter, array(
'link' => $link,
'text' => $text
), (int) $total_items );
}
do_action( 'friends_format_notifications', $action, $item_id, $secondary_item_id, $total_items, $return );
return $return;
}