Changeset 4372 for trunk/bp-activity/bp-activity-loader.php
- Timestamp:
- 05/16/2011 08:54:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-loader.php
r4281 r4372 63 63 define( 'BP_ACTIVITY_SLUG', $this->id ); 64 64 65 // Global tables for messagingcomponent65 // Global tables for activity component 66 66 $global_tables = array( 67 67 'table_name' => $bp->table_prefix . 'bp_activity', 68 68 'table_name_meta' => $bp->table_prefix . 'bp_activity_meta', 69 69 ); 70 71 // All globals for messaging component. 70 71 // User meta keys 72 $user_meta_keys = array( 73 'new_mention_count' => 'bp_new_mention_count', 74 'new_mentions' => 'bp_new_mentions', 75 'favorite_activities' => 'bp_favorite_activities', 76 'latest_update' => 'bp_latest_update', 77 'notification_activity_new_mention' => 'notification_activity_new_mention', 78 'notification_activity_new_reply' => 'notification_activity_new_reply' 79 ); 80 81 // All globals for activity component. 72 82 // Note that global_tables is included in this array. 73 83 $globals = array( … … 77 87 'search_string' => __( 'Search Activity...', 'buddypress' ), 78 88 'global_tables' => $global_tables, 89 'user_meta_keys' => $user_meta_keys 79 90 ); 80 91
Note: See TracChangeset
for help on using the changeset viewer.