BP_Friends_Component:: setup_globals (数组args美元=数组())
设置bp-friends全局设置。
描述
BP_FRIENDS_SLUG常量已弃用,仅用于向后兼容。
另请参阅
参数
- args美元
-
(数组)(可选)看到BP_Component: setup_globals ().
默认值:数组()
源
文件:bp-friends /类/ class-bp-friends-component.php
公共函数setup_globals($args = array()) {$bp = buddypress();/ /弃用。不要使用。//有条件地定义以支持单元测试。如果(!define('BP_FRIENDS_DB_VERSION')) {define('BP_FRIENDS_DB_VERSION', '1800');} //如果需要,定义一个slug。如果(!define('BP_FRIENDS_SLUG')) {define('BP_FRIENDS_SLUG', $this->id);} // friends组件的全局表。 $global_tables = array( 'table_name' => $bp->table_prefix . 'bp_friends', 'table_name_meta' => $bp->table_prefix . 'bp_friends_meta', ); // All globals for the friends component. // Note that global_tables is included in this array. $args = array( 'slug' => BP_FRIENDS_SLUG, 'has_directory' => false, 'search_string' => __( 'Search Connections…', 'buddyboss' ), 'notification_callback' => 'friends_format_notifications', 'global_tables' => $global_tables ); parent::setup_globals( $args ); }
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.5.0 | 介绍了。 |