Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/25/2015 02:19:11 AM (9 years ago)
Author:
tw2113
Message:

Finishing off the XProfile class files for @since changes.

See #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-xprofile/classes/class-bp-xprofile-group.php

    r10023 r10142  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    1313
    1414    /**
    15      * @since BuddyPress (1.1.0)
     15     * @since 1.1.0
    1616     *
    1717     * @var int ID of field group
     
    2020
    2121    /**
    22      * @since BuddyPress (1.1.0)
     22     * @since 1.1.0
    2323     *
    2424     * @var string Name of field group
     
    2727
    2828    /**
    29      * @since BuddyPress (1.1.0)
     29     * @since 1.1.0
    3030     *
    3131     * @var string Description of field group
     
    3434
    3535    /**
    36      * @since BuddyPress (1.1.0)
     36     * @since 1.1.0
    3737     *
    3838     * @var bool Can this group be deleted?
     
    4141
    4242    /**
    43      * @since BuddyPress (1.1.0)
     43     * @since 1.1.0
    4444     *
    4545     * @var int Group order relative to other groups
     
    4848
    4949    /**
    50      * @since BuddyPress (1.1.0)
     50     * @since 1.1.0
    5151     *
    5252     * @var array Fields of group
     
    5757     * Initialize and/or populate profile field group
    5858     *
    59      * @since BuddyPress (1.1.0)
     59     * @since 1.1.0
    6060     *
    6161     * @param int  $id
     
    7272     * Populate a profile field group
    7373     *
    74      * @since BuddyPress (1.0.0)
     74     * @since 1.0.0
    7575     *
    7676     * @global $wpdb $wpdb
     
    105105     * Save a profile field group
    106106     *
    107      * @since BuddyPress (1.1.0)
     107     * @since 1.1.0
    108108     *
    109109     * @global object $wpdb
     
    123123         * Please use this hook to filter the properties above. Each part will be passed in.
    124124         *
    125          * @since BuddyPress (1.0.0)
     125         * @since 1.0.0
    126126         *
    127127         * @param BP_XProfile_Group Current instance of the group being saved. Passed by reference.
     
    154154         * Fires after the current group instance gets saved.
    155155         *
    156          * @since BuddyPress (1.0.0)
     156         * @since 1.0.0
    157157         *
    158158         * @param BP_XProfile_Group Current instance of the group being saved. Passed by reference.
     
    166166     * Delete a profile field group
    167167     *
    168      * @since BuddyPress (1.1.0)
     168     * @since 1.1.0
    169169     *
    170170     * @global object  $wpdb
     
    182182         * Fires before the current group instance gets deleted.
    183183         *
    184          * @since BuddyPress (2.0.0)
     184         * @since 2.0.0
    185185         *
    186186         * @param BP_XProfile_Group Current instance of the group being deleted. Passed by reference.
     
    209209         * Fires after the current group instance gets deleted.
    210210         *
    211          * @since BuddyPress (2.0.0)
     211         * @since 2.0.0
    212212         *
    213213         * @param BP_XProfile_Group Current instance of the group being deleted. Passed by reference.
     
    469469     * Get data about a set of groups, based on IDs.
    470470     *
    471      * @since BuddyPress (2.0.0)
     471     * @since 2.0.0
    472472     *
    473473     * @param array $group_ids Array of IDs.
     
    538538     * Validate field group when form submitted
    539539     *
    540      * @since BuddyPress (1.0.0)
     540     * @since 1.0.0
    541541     *
    542542     * @global string $message
     
    559559     * Update field group position
    560560     *
    561      * @since BuddyPress (1.5.0)
     561     * @since 1.5.0
    562562     *
    563563     * @global $wpdb $wpdb
     
    585585     * Fetch the field visibility level for the fields returned by the query
    586586     *
    587      * @since BuddyPress (1.6.0)
     587     * @since 1.6.0
    588588     *
    589589     * @param int $user_id The profile owner's user_id
     
    613613                 * Filters the XProfile default visibility level for a field.
    614614                 *
    615                  * @since BuddyPress (1.6.0)
     615                 * @since 1.6.0
    616616                 *
    617617                 * @param string $value Default visibility value.
     
    631631     * Fetch the admin-set preferences for all fields.
    632632     *
    633      * @since BuddyPress (1.6.0)
     633     * @since 1.6.0
    634634     *
    635635     * @return array $default_visibility_levels An array, keyed by
     
    671671     * Output the admin area field group form
    672672     *
    673      * @since BuddyPress (1.0.0)
     673     * @since 1.0.0
    674674     *
    675675     * @global string $message
     
    730730                             * Fires before XProfile Group submit metabox.
    731731                             *
    732                              * @since BuddyPress (2.1.0)
     732                             * @since 2.1.0
    733733                             *
    734734                             * @param BP_XProfile_Group $this Current XProfile group.
     
    747747                                             * Fires at the beginning of the XProfile Group publishing actions section.
    748748                                             *
    749                                              * @since BuddyPress (2.1.0)
     749                                             * @since 2.1.0
    750750                                             *
    751751                                             * @param BP_XProfile_Group $this Current XProfile group.
     
    771771                             * Fires after XProfile Group submit metabox.
    772772                             *
    773                              * @since BuddyPress (2.1.0)
     773                             * @since 2.1.0
    774774                             *
    775775                             * @param BP_XProfile_Group $this Current XProfile group.
Note: See TracChangeset for help on using the changeset viewer.