Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/24/2015 11:49:25 PM (11 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Settings component.

See #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-settings/bp-settings-actions.php

    r9994 r10137  
    11<?php
    2 
    32/**
    43 * BuddyPress Settings Actions
     
    98 */
    109
    11 // Exit if accessed directly
     10// Exit if accessed directly.
    1211defined( 'ABSPATH' ) || exit;
    1312
     
    127126                                         * Filter the email text sent when a user changes emails.
    128127                                         *
    129                                          * @since BuddyPress (2.1.0)
     128                                         * @since 2.1.0
    130129                                         *
    131130                                         * @param string  $email_text     Text of the email.
     
    271270         * Fires after the general settings have been saved, and before redirect.
    272271         *
    273          * @since BuddyPress (1.5.0)
     272         * @since 1.5.0
    274273         */
    275274        do_action( 'bp_core_general_settings_after_save' );
     
    321320         * Fires after the notification settings have been saved, and before redirect.
    322321         *
    323          * @since BuddyPress (1.5.0)
     322         * @since 1.5.0
    324323         */
    325324        do_action( 'bp_core_notification_settings_after_save' );
     
    364363         * Fires before the capabilities settings have been saved.
    365364         *
    366          * @since BuddyPress (1.6.0)
     365         * @since 1.6.0
    367366         */
    368367        do_action( 'bp_settings_capabilities_before_save' );
     
    379378                 * Fires after processing a user as a spammer.
    380379                 *
    381                  * @since BuddyPress (1.1.0)
     380                 * @since 1.1.0
    382381                 *
    383382                 * @param int    $value  ID of the currently displayed user.
     
    392391         * Fires after the capabilities settings have been saved and before redirect.
    393392         *
    394          * @since BuddyPress (1.6.0)
     393         * @since 1.6.0
    395394         */
    396395        do_action( 'bp_settings_capabilities_after_save' );
     
    450449 * Process email change verification or cancel requests.
    451450 *
    452  * @since BuddyPress (2.1.0)
     451 * @since 2.1.0
    453452 */
    454453function bp_settings_verify_email_change(){
     
    508507 * Removes 'Email' sub nav, if no component has registered options there.
    509508 *
    510  * @since BuddyPress (2.2.0)
     509 * @since 2.2.0
    511510 */
    512511function bp_settings_remove_email_subnav() {
Note: See TracChangeset for help on using the changeset viewer.