Changeset 10137 for trunk/src/bp-settings/bp-settings-actions.php
- Timestamp:
- 09/24/2015 11:49:25 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-settings/bp-settings-actions.php
r9994 r10137 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Settings Actions … … 9 8 */ 10 9 11 // Exit if accessed directly 10 // Exit if accessed directly. 12 11 defined( 'ABSPATH' ) || exit; 13 12 … … 127 126 * Filter the email text sent when a user changes emails. 128 127 * 129 * @since BuddyPress (2.1.0)128 * @since 2.1.0 130 129 * 131 130 * @param string $email_text Text of the email. … … 271 270 * Fires after the general settings have been saved, and before redirect. 272 271 * 273 * @since BuddyPress (1.5.0)272 * @since 1.5.0 274 273 */ 275 274 do_action( 'bp_core_general_settings_after_save' ); … … 321 320 * Fires after the notification settings have been saved, and before redirect. 322 321 * 323 * @since BuddyPress (1.5.0)322 * @since 1.5.0 324 323 */ 325 324 do_action( 'bp_core_notification_settings_after_save' ); … … 364 363 * Fires before the capabilities settings have been saved. 365 364 * 366 * @since BuddyPress (1.6.0)365 * @since 1.6.0 367 366 */ 368 367 do_action( 'bp_settings_capabilities_before_save' ); … … 379 378 * Fires after processing a user as a spammer. 380 379 * 381 * @since BuddyPress (1.1.0)380 * @since 1.1.0 382 381 * 383 382 * @param int $value ID of the currently displayed user. … … 392 391 * Fires after the capabilities settings have been saved and before redirect. 393 392 * 394 * @since BuddyPress (1.6.0)393 * @since 1.6.0 395 394 */ 396 395 do_action( 'bp_settings_capabilities_after_save' ); … … 450 449 * Process email change verification or cancel requests. 451 450 * 452 * @since BuddyPress (2.1.0)451 * @since 2.1.0 453 452 */ 454 453 function bp_settings_verify_email_change(){ … … 508 507 * Removes 'Email' sub nav, if no component has registered options there. 509 508 * 510 * @since BuddyPress (2.2.0)509 * @since 2.2.0 511 510 */ 512 511 function bp_settings_remove_email_subnav() {
Note: See TracChangeset
for help on using the changeset viewer.