Changeset 9745
- Timestamp:
- 04/13/2015 03:04:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-update.php
r9718 r9745 188 188 $raw_db_version = (int) bp_get_db_version_raw(); 189 189 190 /** 191 * Filters the default components to activate for a new install. 192 * 193 * @since BuddyPress (1.7.0) 194 * 195 * @param array $value Array of default components to activate. 196 */ 190 197 $default_components = apply_filters( 'bp_new_install_default_components', array( 191 198 'activity' => 1, … … 615 622 bp_add_options(); 616 623 617 // Use as of (1.6) 624 /** 625 * Fires during the activation of BuddyPress. 626 * 627 * Use as of (1.6.0) 628 * 629 * @since BuddyPress (1.6.0) 630 */ 618 631 do_action( 'bp_activation' ); 619 632 … … 644 657 } 645 658 646 // Use as of (1.6) 659 /** 660 * Fires during the deactivation of BuddyPress. 661 * 662 * Use as of (1.6.0) 663 * 664 * @since BuddyPress (1.6.0) 665 */ 647 666 do_action( 'bp_deactivation' ); 648 667 … … 661 680 */ 662 681 function bp_uninstall() { 682 683 /** 684 * Fires during the uninstallation of BuddyPress. 685 * 686 * @since BuddyPress (1.6.0) 687 */ 663 688 do_action( 'bp_uninstall' ); 664 689 }
Note: See TracChangeset
for help on using the changeset viewer.