Changeset 10052 for trunk/src/bp-core/bp-core-widgets.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-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.