Changeset 9994
- Timestamp:
- 07/04/2015 10:19:15 PM (9 years ago)
- Location:
- trunk/src/bp-settings
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-settings/bp-settings-actions.php
r9819 r9994 13 13 14 14 /** 15 * Handles the changing and saving of user email addresses and passwords 15 * Handles the changing and saving of user email addresses and passwords. 16 16 * 17 17 * We do quite a bit of logic and error handling here to make sure that users … … 281 281 282 282 /** 283 * Handles the changing and saving of user notification settings 283 * Handles the changing and saving of user notification settings. 284 284 */ 285 285 function bp_settings_action_notifications() { … … 402 402 403 403 /** 404 * Handles the deleting of a user 404 * Handles the deleting of a user. 405 405 */ 406 406 function bp_settings_action_delete_account() { -
trunk/src/bp-settings/bp-settings-loader.php
r9936 r9994 2 2 3 3 /** 4 * BuddyPress Settings Loader 4 * BuddyPress Settings Loader. 5 5 * 6 6 * @package BuddyPress … … 14 14 15 15 /** 16 * Start the settings component creation process 16 * Start the settings component creation process. 17 17 * 18 18 * @since BuddyPress (1.5.0) … … 30 30 31 31 /** 32 * Include files 32 * Include files. 33 * 34 * @param array $includes Array of values to include. Not used. 33 35 */ 34 36 public function includes( $includes = array() ) { … … 42 44 43 45 /** 44 * Setup globals 46 * Setup globals. 45 47 * 46 48 * The BP_SETTINGS_SLUG constant is deprecated, and only used here for 47 49 * backwards compatibility. 50 * 51 * @param array $args Array of arguments. 48 52 * 49 53 * @since BuddyPress (1.5.0) … … 65 69 /** 66 70 * Set up navigation. 71 * 72 * @param array $main_nav Array of main nav items. 73 * @param array $sub_nav Array of sub nav items. 67 74 */ 68 75 public function setup_nav( $main_nav = array(), $sub_nav = array() ) { … … 144 151 145 152 /** 146 * Set up the Toolbar 153 * Set up the Toolbar. 154 * 155 * @param array $wp_admin_nav Array of Admin Bar items. 147 156 */ 148 157 public function setup_admin_bar( $wp_admin_nav = array() ) { -
trunk/src/bp-settings/bp-settings-screens.php
r9819 r9994 2 2 3 3 /** 4 * BuddyPress Settings Screens 4 * BuddyPress Settings Screens. 5 5 * 6 6 * @package BuddyPress … … 12 12 13 13 /** 14 * Show the general settings template 14 * Show the general settings template. 15 15 * 16 16 * @since BuddyPress (1.5.0) … … 34 34 35 35 /** 36 * Show the notifications settings template 36 * Show the notifications settings template. 37 37 * 38 38 * @since BuddyPress (1.5.0) … … 56 56 57 57 /** 58 * Show the delete-account settings template 58 * Show the delete-account settings template. 59 59 * 60 60 * @since BuddyPress (1.5.0) … … 78 78 79 79 /** 80 * Show the capabilities settings template 80 * Show the capabilities settings template. 81 81 * 82 82 * @since BuddyPress (1.6.0) -
trunk/src/bp-settings/bp-settings-template.php
r9819 r9994 2 2 3 3 /** 4 * BuddyPress Settings Template Functions 4 * BuddyPress Settings Template Functions. 5 5 * 6 6 * @package BuddyPress … … 12 12 13 13 /** 14 * Output the settings component slug 14 * Output the settings component slug. 15 15 * 16 16 * @package BuddyPress … … 24 24 } 25 25 /** 26 * Return the settings component slug 26 * Return the settings component slug. 27 27 * 28 28 * @package BuddyPress … … 43 43 44 44 /** 45 * Output the settings component root slug 45 * Output the settings component root slug. 46 46 * 47 47 * @package BuddyPress … … 55 55 } 56 56 /** 57 * Return the settings component root slug 57 * Return the settings component root slug. 58 58 * 59 59 * @package BuddyPress
Note: See TracChangeset
for help on using the changeset viewer.