BP_Friends_Component: late_includes ()
包括后期的方法。
描述
只在特定页面上加载特定的代码。
源
文件:bp-friends /类/ class-bp-friends-component.php
public function late_includes() {// PHPUnit是否在运行if (defined('BP_TESTS_DIR')) {return;} / /连接。if (bp_is_user_friends()){//经过认证的操作。If (is_user_logged_in() && in_array(bp_current_action(), array('add-friend', 'remove-friend'), true)) {require $this->path . If (is_user_logged_in() && in_array(bp_current_action(), array('add-friend', 'remove-friend'), true);“bp-friends /行动/”。bp_current_action()。“。php”;} //用户导航。需要$ this - >路径。 'bp-friends/screens/my-friends.php'; if ( is_user_logged_in() && bp_is_user_friend_requests() ) { require $this->path . 'bp-friends/screens/requests.php'; } if ( is_user_logged_in() ) { require $this->path . 'bp-friends/screens/mutual-friends.php'; } } }
更新日志
版本 | 描述 |
---|---|
BuddyPress 3.0.0 | 介绍了。 |