Skip to:
Content

BuddyPress.org


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

Standardizing our @since tags for the Groups Component.

See #6576.

File:
1 edited

Legend:

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

    r9982 r10148  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    108108     * Is the current user a member of this group?
    109109     *
    110      * @since BuddyPress (1.2.0)
     110     * @since 1.2.0
    111111     * @var bool
    112112     */
     
    116116     * Does the current user have an outstanding invitation to this group?
    117117     *
    118      * @since BuddyPress (1.9.0)
     118     * @since 1.9.0
    119119     * @var bool
    120120     */
     
    124124     * Does the current user have a pending membership request to this group?
    125125     *
    126      * @since BuddyPress (1.9.0)
     126     * @since 1.9.0
    127127     * @var bool
    128128     */
     
    132132     * Timestamp of the last activity that happened in this group.
    133133     *
    134      * @since BuddyPress (1.2.0)
     134     * @since 1.2.0
    135135     * @var string
    136136     */
     
    140140     * If this is a private or hidden group, does the current user have access?
    141141     *
    142      * @since BuddyPress (1.6.0)
     142     * @since 1.6.0
    143143     * @var bool
    144144     */
     
    148148     * Raw arguments passed to the constructor.
    149149     *
    150      * @since BuddyPress (2.0.0)
     150     * @since 2.0.0
    151151     * @var array
    152152     */
     
    217217             * Filters the SQL prepared statement used to fetch group admins and mods.
    218218             *
    219              * @since BuddyPress (1.5.0)
     219             * @since 1.5.0
    220220             *
    221221             * @param string $value SQL select statement used to fetch admins and mods.
     
    282282         * Please use this hook to filter the properties above. Each part will be passed in.
    283283         *
    284          * @since BuddyPress (1.0.0)
     284         * @since 1.0.0
    285285         *
    286286         * @param BP_Groups_Group $this Current instance of the group item being saved. Passed by reference.
     
    362362         * Fires after the current group item has been saved.
    363363         *
    364          * @since BuddyPress (1.0.0)
     364         * @since 1.0.0
    365365         *
    366366         * @param BP_Groups_Group $this Current instance of the group item that was saved. Passed by reference.
     
    397397         * Fires before the deletion of a group.
    398398         *
    399          * @since BuddyPress (1.2.0)
     399         * @since 1.2.0
    400400         *
    401401         * @param BP_Groups_Group $this     Current instance of the group item being deleted. Passed by reference.
     
    806806             * Filters the 'type' parameter used to overwrite 'order' and 'orderby' values.
    807807             *
    808              * @since BuddyPress (2.1.0)
     808             * @since 2.1.0
    809809             *
    810810             * @param array  $value Converted 'type' value for order and orderby.
     
    831831         * Filters the converted 'orderby' term.
    832832         *
    833          * @since BuddyPress (2.1.0)
     833         * @since 2.1.0
    834834         *
    835835         * @param string $value   Converted 'orderby' term.
     
    853853         * Filters the pagination SQL statement.
    854854         *
    855          * @since BuddyPress (1.5.0)
     855         * @since 1.5.0
    856856         *
    857857         * @param string $value Concatenated SQL statement.
     
    913913         * Filters the SQL used to retrieve total group results.
    914914         *
    915          * @since BuddyPress (1.5.0)
     915         * @since 1.5.0
    916916         *
    917917         * @param string $t_sql     Concatenated SQL statement used for retrieving total group results.
     
    951951     * AND keyword from the 'where' clause).
    952952     *
    953      * @since BuddyPress (1.8.0)
     953     * @since 1.8.0
    954954     * @access protected
    955955     *
     
    999999     * Convert the 'type' parameter to 'order' and 'orderby'.
    10001000     *
    1001      * @since BuddyPress (1.8.0)
     1001     * @since 1.8.0
    10021002     * @access protected
    10031003     *
     
    11151115     * Convert the 'orderby' param into a proper SQL term/column.
    11161116     *
    1117      * @since BuddyPress (1.8.0)
     1117     * @since 1.8.0
    11181118     * @access protected
    11191119     *
     
    14951495         * https://buddypress.trac.wordpress.org/ticket/4306.
    14961496         *
    1497          * @since BuddyPress (1.6.0)
     1497         * @since 1.6.0
    14981498         *
    14991499         * @param string $filter_sql SQL portion for the query.
     
    15271527     * Get a total count of all topics of a given status, across groups/forums.
    15281528     *
    1529      * @since BuddyPress (1.5.0)
     1529     * @since 1.5.0
    15301530     *
    15311531     * @param string      $status       Which group type to count. 'public', 'private',
     
    15791579     * with bp_has_groups().
    15801580     *
    1581      * @since BuddyPress (1.7.0)
     1581     * @since 1.7.0
    15821582     *
    15831583     * @return array
Note: See TracChangeset for help on using the changeset viewer.