bp_notifications_delete_notifications_from_user (intuser_id美元,字符串component_name美元,字符串component_action美元)
删除用户的所有通知。
描述
当删除或发送垃圾邮件时,用于清除用户的所有通知。
参数
- user_id美元
-
(int)(必需)删除关联项的用户ID。
- component_name美元
-
(字符串)(必需)关联组件的名称。
- component_action美元
-
(字符串)(必需)关联操作的名称。
返回
(int |假)成功时真,失败时假。
源
文件:bp-notifications / bp-notifications-functions.php
function bp_notifications_delete_notifications_from_user($user_id, $component_name, $component_action) {return BP_Notifications_Notification::delete(array('item_id' => $user_id, 'component_name' => $component_name, 'component_action' => $component_action,));}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.9.0 | 介绍了。 |