ASong2U_Web/wp-content/plugins/buddypress/bp-members/bp-members-notifications.php

131 lines
4.9 KiB
PHP

<?php
/**
* BuddyPress Member Notifications
*
* Functions and filters used for member notification
*
* @package BuddyPress
* @subpackage Members
*/
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) exit;
function bp_core_add_notification( $item_id, $user_id, $component_name, $component_action, $secondary_item_id = 0, $date_notified = false ) {
global $bp;
if ( empty( $date_notified ) )
$date_notified = bp_core_current_time();
$notification = new BP_Core_Notification;
$notification->item_id = $item_id;
$notification->user_id = $user_id;
$notification->component_name = $component_name;
$notification->component_action = $component_action;
$notification->date_notified = $date_notified;
$notification->is_new = 1;
if ( !empty( $secondary_item_id ) )
$notification->secondary_item_id = $secondary_item_id;
if ( !$notification->save() )
return false;
return true;
}
function bp_core_delete_notification( $id ) {
if ( !bp_core_check_notification_access( $bp->loggedin_user->id, $id ) )
return false;
return BP_Core_Notification::delete( $id );
}
function bp_core_get_notification( $id ) {
return new BP_Core_Notification( $id );
}
function bp_core_get_notifications_for_user( $user_id, $format = 'simple' ) {
global $bp;
$notifications = BP_Core_Notification::get_all_for_user( $user_id );
// Group notifications by component and component_action and provide totals
for ( $i = 0, $count = count( $notifications ); $i < $count; ++$i ) {
$notification = $notifications[$i];
$grouped_notifications[$notification->component_name][$notification->component_action][] = $notification;
}
if ( empty( $grouped_notifications ) )
return false;
$renderable = array();
// Calculate a renderable output for each notification type
foreach ( (array)$grouped_notifications as $component_name => $action_arrays ) {
if ( !$action_arrays )
continue;
foreach ( (array)$action_arrays as $component_action_name => $component_action_items ) {
$action_item_count = count($component_action_items);
if ( $action_item_count < 1 )
continue;
// @deprecated format_notification_function - 1.5
if ( isset( $bp->{$component_name}->format_notification_function ) && function_exists( $bp->{$component_name}->format_notification_function ) ) {
$renderable[] = call_user_func( $bp->{$component_name}->format_notification_function, $component_action_name, $component_action_items[0]->item_id, $component_action_items[0]->secondary_item_id, $action_item_count );
} elseif ( isset( $bp->{$component_name}->notification_callback ) && function_exists( $bp->{$component_name}->notification_callback ) ) {
if ( 'object' == $format ) {
$content = call_user_func( $bp->{$component_name}->notification_callback, $component_action_name, $component_action_items[0]->item_id, $component_action_items[0]->secondary_item_id, $action_item_count, 'array' );
$notification_object = new stdClass;
// Minimal backpat with non-compatible notification
// callback functions
if ( is_string( $content ) ) {
$notification_object->content = $content;
$notification_object->href = bp_loggedin_user_domain();
} else {
$notification_object->content = $content['text'];
$notification_object->href = $content['link'];
}
$notification_object->id = $component_action_items[0]->id;
$renderable[] = $notification_object;
} else {
$content = call_user_func( $bp->{$component_name}->notification_callback, $component_action_name, $component_action_items[0]->item_id, $component_action_items[0]->secondary_item_id, $action_item_count );
$renderable[] = $content;
}
}
}
}
return isset( $renderable ) ? $renderable : false;
}
function bp_core_delete_notifications_by_type( $user_id, $component_name, $component_action ) {
return BP_Core_Notification::delete_for_user_by_type( $user_id, $component_name, $component_action );
}
function bp_core_delete_notifications_by_item_id( $user_id, $item_id, $component_name, $component_action, $secondary_item_id = false ) {
return BP_Core_Notification::delete_for_user_by_item_id( $user_id, $item_id, $component_name, $component_action, $secondary_item_id );
}
function bp_core_delete_all_notifications_by_type( $item_id, $component_name, $component_action = false, $secondary_item_id = false ) {
return BP_Core_Notification::delete_all_by_type( $item_id, $component_name, $component_action, $secondary_item_id );
}
function bp_core_delete_notifications_from_user( $user_id, $component_name, $component_action ) {
return BP_Core_Notification::delete_from_user_by_type( $user_id, $component_name, $component_action );
}
function bp_core_check_notification_access( $user_id, $notification_id ) {
if ( !BP_Core_Notification::check_access( $user_id, $notification_id ) )
return false;
return true;
}
?>