Changeset 10052
- Timestamp:
- 08/16/2015 11:09:16 PM (9 years ago)
- Location:
- trunk/src/bp-core
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-caps.php
r10012 r10052 8 8 */ 9 9 10 // Exit if accessed directly 10 // Exit if accessed directly. 11 11 defined( 'ABSPATH' ) || exit; 12 12 -
trunk/src/bp-core/bp-core-classes.php
r9819 r10052 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 -
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. -
trunk/src/bp-core/bp-core-widgets.php
r10012 r10052 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 71 71 72 72 <?php 73 74 /** 75 * Fires before the display of widget content if logged in. 76 * 77 * @since BuddyPress (1.9.0) 78 */ 73 /** 74 * Fires before the display of widget content if logged in. 75 * 76 * @since BuddyPress (1.9.0) 77 */ 79 78 do_action( 'bp_before_login_widget_loggedin' ); ?> 80 79 … … 93 92 94 93 /** 95 96 97 98 94 * Fires after the display of widget content if logged in. 95 * 96 * @since BuddyPress (1.9.0) 97 */ 99 98 do_action( 'bp_after_login_widget_loggedin' ); ?> 100 99 … … 104 103 105 104 /** 106 107 108 109 105 * Fires before the display of widget content if logged out. 106 * 107 * @since BuddyPress (1.9.0) 108 */ 110 109 do_action( 'bp_before_login_widget_loggedout' ); ?> 111 110 … … 132 131 133 132 /** 134 135 136 137 133 * Fires after the display of widget content if logged out. 134 * 135 * @since BuddyPress (1.9.0) 136 */ 138 137 do_action( 'bp_after_login_widget_loggedout' ); ?> 139 138 … … 163 162 * @param array $instance Settings for this widget. 164 163 * 165 * @return string164 * @return void 166 165 */ 167 166 public function form( $instance = array() ) {
Note: See TracChangeset
for help on using the changeset viewer.