BP_Members_Component:: rest_api_init (数组美元的控制器=数组())
初始化BuddyBoss REST API。
描述
参数
- 美元的控制器
-
(数组)(可选)看到BP_Component: rest_api_init ()为描述。
默认值:数组()
源
文件:bp-members /类/ class-bp-members-component.php
public function rest_api_init($controllers = array()) {$controllers = array(/** *由于Members组件总是被加载,*让我们在这里注册Components端点。*/ 'BP_REST_Components_Endpoint', 'BP_REST_Settings_Endpoint', 'BP_REST_Members_Endpoint', 'BP_REST_Members_Actions_Endpoint', 'BP_REST_Members_Details_Endpoint', 'BP_REST_Attachments_Member_Avatar_Endpoint',);如果(function_exists('bp_core_get_suggestions')) {$controllers[] = 'BP_REST_Mention_Endpoint';} if (bp_is_active('members', 'cover_image') || bp_is_active('xprofile', 'cover_image')) {$controllers[] = 'BP_REST_Attachments_Member_Cover_Endpoint';} if (bp_get_signup_allowed()) {$controllers[] = 'BP_REST_Signup_Endpoint';} parent::rest_api_init($controllers);}
更新日志
版本 | 描述 |
---|---|
BuddyBoss 1.3.5 | 介绍了。 |