Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/13/2015 02:02:56 AM (9 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Core component.

See #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/classes/class-bp-recursive-query.php

    r10012 r10108  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    1313 * Base class for creating query classes that generate SQL fragments for filtering results based on recursive query params.
    1414 *
    15  * @since BuddyPress (2.2.0)
     15 * @since 2.2.0
    1616 */
    1717abstract class BP_Recursive_Query {
     
    2020     * Query arguments passed to the constructor.
    2121     *
    22      * @since BuddyPress (2.2.0)
     22     * @since 2.2.0
    2323     * @access public
    2424     * @var array
     
    3535     * the empty 'join' clause, and only passes the 'where' clause.
    3636     *
    37      * @since BuddyPress (2.2.0)
     37     * @since 2.2.0
    3838     * @access protected
    3939     *
     
    5959     * automatically from get_sql_clauses().
    6060     *
    61      * @since BuddyPress (2.2.0)
     61     * @since 2.2.0
    6262     * @access protected
    6363     *
     
    139139     * Extend this method if your class uses different sanitizing logic.
    140140     *
    141      * @since BuddyPress (2.2.0)
     141     * @since 2.2.0
    142142     * @access public
    143143     *
     
    207207     * Must be overridden in a subclass.
    208208     *
    209      * @since BuddyPress (2.2.0)
     209     * @since 2.2.0
    210210     * @access protected
    211211     *
     
    225225     * Must be overridden in a subclass.
    226226     *
    227      * @since BuddyPress (2.2.0)
     227     * @since 2.2.0
    228228     * @access protected
    229229     *
Note: See TracChangeset for help on using the changeset viewer.