Changeset 10012 for trunk/src/bp-core/admin/bp-core-admin-schema.php
- Timestamp:
- 07/12/2015 12:49:36 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-core/admin/bp-core-admin-schema.php (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-schema.php
r9819 r10012 2 2 3 3 /** 4 * BuddyPress DB schema 4 * BuddyPress DB schema. 5 5 * 6 6 * @package BuddyPress … … 12 12 13 13 /** 14 * Get the DB schema to use for BuddyPress components 14 * Get the DB schema to use for BuddyPress components. 15 15 * 16 16 * @since BuddyPress (1.1.0) 17 17 * 18 18 * @global $wpdb $wpdb 19 * @return string The default database character-set, if set 19 * @return string The default database character-set, if set. 20 20 */ 21 21 function bp_core_set_charset() { … … 28 28 29 29 /** 30 * Main installer 30 * Main installer. 31 31 * 32 32 * Can be passed an optional array of components to explicitly run installation … … 35 35 * @since BuddyPress (1.0.0) 36 36 * 37 * @param array $active_components Components to install37 * @param array|bool $active_components Components to install. 38 38 */ 39 39 function bp_core_install( $active_components = false ) { … … 86 86 87 87 /** 88 * Install database tables for the Notifications component 88 * Install database tables for the Notifications component. 89 89 * 90 90 * @since BuddyPress (1.0.0) … … 130 130 131 131 /** 132 * Install database tables for the Activity component 132 * Install database tables for the Activity component. 133 133 * 134 134 * @since BuddyPress (1.0.0) … … 183 183 184 184 /** 185 * Install database tables for the Notifications component 185 * Install database tables for the Notifications component. 186 186 * 187 187 * @since BuddyPress (1.0.0) … … 211 211 212 212 /** 213 * Install database tables for the Groups component 213 * Install database tables for the Groups component. 214 214 * 215 215 * @since BuddyPress (1.0.0) … … 271 271 272 272 /** 273 * Install database tables for the Messages component 273 * Install database tables for the Messages component. 274 274 * 275 275 * @since BuddyPress (1.0.0) … … 331 331 332 332 /** 333 * Install database tables for the Profiles component 333 * Install database tables for the Profiles component. 334 334 * 335 335 * @since BuddyPress (1.0.0) … … 421 421 422 422 /** 423 * Install database tables for the Sites component 423 * Install database tables for the Sites component. 424 424 * 425 425 * @since BuddyPress (1.0.0) … … 501 501 * This is necessary because WordPress's `pre_schema_upgrade()` function wraps 502 502 * table ALTER's in multisite checks, and other plugins may have installed their 503 * own sign-ups table; Eg: Gravity Forms User Registration Add On 503 * own sign-ups table; Eg: Gravity Forms User Registration Add On. 504 504 * 505 505 * @since BuddyPress (2.0.1)
Note: See TracChangeset
for help on using the changeset viewer.