friends_screen_requests ()

捕获并处理请求页面。

描述

文件:bp-friends /屏幕/ requests.php

function friends_screen_requests() {if (bp_is_action_variable('accept', 0) && is_numeric(bp_action_variable(1)){//检查nonce。check_admin_referer(“friends_accept_friendship”);if (friends_accept_friendship(bp_action_variable(1))) bp_core_add_message(__('连接接受','buddyboss'));else bp_core_add_message(__('Connection could not be accepted', 'buddyboss'), 'error');Bp_core_redirect (trailingslashit(bp_loggedin_user_domain())。bp_current_component()。“/”。bp_current_action ()));} elseif (bp_is_action_variable('reject', 0) && is_numeric(bp_action_variable(1)){//检查nonce。check_admin_referer(“friends_reject_friendship”); if ( friends_reject_friendship( bp_action_variable( 1 ) ) ) bp_core_add_message( __( 'Connection rejected', 'buddyboss' ) ); else bp_core_add_message( __( 'Connection could not be rejected', 'buddyboss' ), 'error' ); bp_core_redirect( trailingslashit( bp_loggedin_user_domain() . bp_current_component() . '/' . bp_current_action() ) ); } elseif ( bp_is_action_variable( 'cancel', 0 ) && is_numeric( bp_action_variable( 1 ) ) ) { // Check the nonce. check_admin_referer( 'friends_withdraw_friendship' ); if ( friends_withdraw_friendship( bp_loggedin_user_id(), bp_action_variable( 1 ) ) ) bp_core_add_message( __( 'Connection request withdrawn', 'buddyboss' ) ); else bp_core_add_message( __( 'Connection request could not be withdrawn', 'buddyboss' ), 'error' ); bp_core_redirect( trailingslashit( bp_loggedin_user_domain() . bp_current_component() . '/' . bp_current_action() ) ); } /** * Fires before the loading of template for the friends requests page. * * @since BuddyPress 1.0.0 */ do_action( 'friends_screen_requests' ); /** * Filters the template used to display the My Connections page. * * @since BuddyPress 1.0.0 * * @param string $template Path to the friends request template to load. */ bp_core_load_template( apply_filters( 'friends_template_requests', 'members/single/home' ) ); }

更新日志

更新日志
版本 描述
BuddyPress 1.0.0 介绍了。

问题吗?

我们总是很乐意帮助您解决代码或其他问题!搜索我们的开发人员文档联络支持,或与我们联系销售团队