BP_Admin_Setting_Friends
主连接设置类。
描述
源
文件:bp-core /管理/设置/ bp-admin-setting-friends.php
class BP_Admin_Setting_Friends extends BP_Admin_Setting_tab {public function initialize() {$this->tab_label = __('Connections', 'buddyboss');$ this - > tab_name =“bp-friends”;$ this - > tab_order = 60;} public function is_active() {return bp_is_active('friends');} public function register_fields() {$this->add_section('bp_friends', __('连接设置','buddyboss'));如果(bp_is_active('messages')) {$this->add_field('bp-force-friendship-to-message', __('Messaging', 'buddyboss'), [$this, 'bp_admin_setting_callback_force_friendship_to_message']);} //连接设置教程$this->add_field('bp-连接-设置-教程',",[$this, 'bp_connection_settings_tutorial']);} /** *强制用户在发送消息之前进行连接。* * @since BuddyBoss 1.0.0 */ public function bp_admin_setting_callback_force_friendship_to_message() {?> />
更新日志
版本 | 描述 |
---|---|
BuddyBoss 1.0.0 | 介绍了。 |
方法
- bp_admin_sanitize_callback_force_friendship_to_message- bp-force-friendship-to-message设置的卫生处理。
- bp_admin_setting_callback_force_friendship_to_message—在发送消息之前,强制用户连接。
- bp_connection_settings_tutorial链接到连接设置教程
- 初始化
- is_active
- register_fields