Changeset 10052 for trunk/src/bp-core/bp-core-component.php
- Timestamp:
- 08/16/2015 11:09:16 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-component.php
r10012 r10052 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 12 12 if ( !class_exists( 'BP_Component' ) ) : 13 13 14 /** 14 15 * BuddyPress Component Class. … … 588 589 * @since BuddyPress (2.0.0) 589 590 * 590 * @param array $tables 591 * @param array $tables Table names to register. 591 592 */ 592 593 public function register_global_tables( $tables = array() ) { … … 631 632 * @since BuddyPress (2.0.0) 632 633 * 633 * @param array $tables 634 * @param array $tables Table names to register. 634 635 */ 635 636 public function register_meta_tables( $tables = array() ) { … … 770 771 * @since BuddyPress (1.9) 771 772 * 772 * @uses do_action() Calls 'bp_{@link bp_Component::name}_parse_query' 773 * @uses do_action() Calls 'bp_{@link bp_Component::name}_parse_query'. 774 * 773 775 * @param object $query The main WP_Query. 774 776 */ … … 806 808 } 807 809 } 808 endif; // BP_Component 810 endif; // BP_Component.
Note: See TracChangeset
for help on using the changeset viewer.