Changeset 10140 for trunk/src/bp-xprofile/bp-xprofile-screens.php
- Timestamp:
- 09/25/2015 12:18:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/bp-xprofile-screens.php
r10135 r10140 1 1 <?php 2 3 /** 4 * BuddyPress XProfile Screens 2 /** 3 * BuddyPress XProfile Screens. 5 4 * 6 5 * Screen functions are the controllers of BuddyPress. They will execute when … … 12 11 */ 13 12 14 // Exit if accessed directly 13 // Exit if accessed directly. 15 14 defined( 'ABSPATH' ) || exit; 16 15 … … 27 26 * Fires right before the loading of the XProfile screen template file. 28 27 * 29 * @since BuddyPress (1.0.0)28 * @since 1.0.0 30 29 * 31 30 * @param string $new $_GET parameter holding the "new" parameter. … … 36 35 * Filters the template to load for the XProfile screen. 37 36 * 38 * @since BuddyPress (1.0.0)37 * @since 1.0.0 39 38 * 40 39 * @param string $template Path to the XProfile template to load. … … 152 151 * Fires on each iteration of an XProfile field being saved with no error. 153 152 * 154 * @since BuddyPress (1.1.0)153 * @since 1.1.0 155 154 * 156 155 * @param int $field_id ID of the field that was saved. … … 164 163 * Fires after all XProfile fields have been saved for the current profile. 165 164 * 166 * @since BuddyPress (1.0.0)165 * @since 1.0.0 167 166 * 168 167 * @param int $value Displayed user ID. … … 189 188 * Fires right before the loading of the XProfile edit screen template file. 190 189 * 191 * @since BuddyPress (1.0.0)190 * @since 1.0.0 192 191 */ 193 192 do_action( 'xprofile_screen_edit_profile' ); … … 196 195 * Filters the template to load for the XProfile edit screen. 197 196 * 198 * @since BuddyPress (1.0.0)197 * @since 1.0.0 199 198 * 200 199 * @param string $template Path to the XProfile edit template to load. … … 283 282 * Fires right before the loading of the XProfile change avatar screen template file. 284 283 * 285 * @since BuddyPress (1.0.0)284 * @since 1.0.0 286 285 */ 287 286 do_action( 'xprofile_screen_change_avatar' ); … … 290 289 * Filters the template to load for the XProfile change avatar screen. 291 290 * 292 * @since BuddyPress (1.0.0)291 * @since 1.0.0 293 292 * 294 293 * @param string $template Path to the XProfile change avatar template to load. … … 300 299 * Show the xprofile settings template 301 300 * 302 * @since BuddyPress (2.0.0)301 * @since 2.0.0 303 302 */ 304 303 function bp_xprofile_screen_settings() { … … 313 312 * Filters the template to load for the XProfile settings screen. 314 313 * 315 * @since BuddyPress (2.0.0)314 * @since 2.0.0 316 315 * 317 316 * @param string $template Path to the XProfile change avatar template to load.
Note: See TracChangeset
for help on using the changeset viewer.