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);
}
Ejemplo n.º 2
0
/**
 * BP 1.5 simplified notification functions a bit
 */
function bp_core_delete_notifications_for_user_by_type($user_id, $component_name, $component_action)
{
    _deprecated_function(__FUNCTION__, '1.5', 'bp_core_delete_notifications_by_type()');
    return BP_Core_Notification::delete_for_user_by_type($user_id, $component_name, $component_action);
}