BP_Activity_Activity:: get_recorded_components (保龄球skip_last_activity美元=真正的)
获取已记录与之关联的活动的组件列表。
描述
参数
- skip_last_activity美元
-
(保龄球)(可选)如果为true,如果与组件关联的唯一活动类型是'last_activity',则组件将不被包含。(从2.0.0开始,'last_activity'存储在活动表中,但这些项不是完全的活动项。)默认值:真的。
默认值:真
返回
(数组)组件名称列表。
源
文件:bp-activity /类/ class-bp-activity-activity.php
Public static function get_recorded_components($skip_last_activity = true) {global $wpdb;英国石油美元= buddypress ();if (true === $skip_last_activity) {$ components = $wpdb->get_col("SELECT DISTINCT component FROM {$bp->activity->table_name} WHERE action != " AND action != 'last_activity' ORDER BY component ASC");} else {$ components = $wpdb->get_col("SELECT DISTINCT component FROM {$bp->activity->table_name} ORDER BY component ASC");}返回$组件;}
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.2.0 | 介绍了。 |