Skip to:
Content

BuddyPress.org

Changeset 10248


Ignore:
Timestamp:
10/11/2015 04:27:50 PM (9 years ago)
Author:
djpaul
Message:

phpdoc: remove obsolete @access public|protected|private statements.

These should only be used on procedural functions that, for legacy
reasons, pretend they are private by prefacing their name with an
underscore.

As modern PHP parsers and IDEs use reflections to figure out the
visibility scope of methods and properties by looking at the actual
code, there’s also no bonus in keeping these purely for documentation.

Location:
trunk/src
Files:
34 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/bp-activity-admin.php

    r10234 r10248  
    12191219     *
    12201220     * @since 2.3.3
    1221      * @access protected
    12221221     *
    12231222     * @return string
  • trunk/src/bp-activity/bp-activity-akismet.php

    r10077 r10248  
    2121     * The activity last marked as spam.
    2222     *
    23      * @access protected
    2423     * @var BP_Activity_Activity
    2524     * @since 1.6.0
  • trunk/src/bp-activity/bp-activity-template.php

    r10217 r10248  
    118118     *
    119119     * @since 1.5.0
    120      * @access public
    121120     * @var int
    122121     */
     
    127126     *
    128127     * @since 1.5.0
    129      * @access public
    130128     * @var int
    131129     */
     
    136134     *
    137135     * @since 1.5.0
    138      * @access public
    139136     * @var int
    140137     */
     
    145142     *
    146143     * @since 1.5.0
    147      * @access public
    148144     * @var array
    149145     */
     
    154150     *
    155151     * @since 1.5.0
    156      * @access public
    157152     * @var object
    158153     */
     
    163158     *
    164159     * @since 1.5.0
    165      * @access public
    166160     * @var bool
    167161     */
     
    180174     *
    181175     * @since 1.5.0
    182      * @access public
    183176     * @var int
    184177     */
     
    189182     *
    190183     * @since 1.5.0
    191      * @access public
    192184     * @var int
    193185     */
     
    198190     *
    199191     * @since 1.5.0
    200      * @access public
    201192     * @var string
    202193     */
     
    207198     *
    208199     * @since 1.5.0
    209      * @access public
    210200     * @var string
    211201     */
  • trunk/src/bp-activity/classes/class-bp-activity-feed.php

    r10094 r10248  
    174174    /**
    175175     * Setup and validate the class properties.
    176      *
    177      * @access protected
    178176     */
    179177    protected function setup_properties() {
     
    199197     * Currently, these hooks are used to maintain backwards compatibility with
    200198     * the RSS feeds previous to BP 1.8.
    201      *
    202      * @access protected
    203199     */
    204200    protected function setup_hooks() {
     
    273269    /**
    274270     * Output the feed's item content.
    275      *
    276      * @access protected
    277271     */
    278272    protected function feed_content() {
     
    304298     *
    305299     * @since 1.9.0
    306      *
    307      * @access protected
    308300     */
    309301    protected function http_headers() {
     
    380372    /**
    381373     * Output the RSS feed.
    382      *
    383      * @access protected
    384374     */
    385375    protected function output() {
  • trunk/src/bp-activity/classes/class-bp-activity-query.php

    r10077 r10248  
    2525     *
    2626     * @since 2.2.0
    27      * @access public
    2827     * @var array
    2928     */
     
    3433     *
    3534     * @since 2.2.0
    36      * @access public
    3735     * @var string
    3836     */
     
    4543     *
    4644     * @since 2.2.0
    47      * @access public
    4845     * @var array
    4946     */
     
    8885     *
    8986     * @since 2.2.0
    90      * @access public
    9187     *
    9288     * @param string $alias An existing table alias that is compatible with the current query clause.
     
    113109     *
    114110     * @since 2.2.0
    115      * @access protected
    116111     *
    117112     * @param  array $clause       Array of arguments belonging to the clause.
     
    226221     *
    227222     * @since 2.2.0
    228      * @access protected
    229223     *
    230224     * @param array $query Clause to check.
     
    243237     *
    244238     * @since 2.2.0
    245      * @access public
    246239     *
    247240     * @param string $column The user-supplied column name.
  • trunk/src/bp-blogs/bp-blogs-functions.php

    r10100 r10248  
    837837 *
    838838 * @since 1.6.0
    839  * @access private
    840839 */
    841840function bp_blogs_maybe_add_user_to_blog() {
  • trunk/src/bp-blogs/bp-blogs-template.php

    r10126 r10248  
    112112     * The loop iterator.
    113113     *
    114      * @access public
    115114     * @var int
    116115     */
     
    120119     * The number of blogs returned by the paged query.
    121120     *
    122      * @access public
    123121     * @var int
    124122     */
     
    128126     * Array of blogs located by the query..
    129127     *
    130      * @access public
    131128     * @var array
    132129     */
     
    136133     * The blog object currently being iterated on.
    137134     *
    138      * @access public
    139135     * @var object
    140136     */
     
    144140     * A flag for whether the loop is currently being iterated.
    145141     *
    146      * @access public
    147142     * @var bool
    148143     */
     
    152147     * The page number being requested.
    153148     *
    154      * @access public
    155149     * @var int
    156150     */
     
    160154     * The number of items being requested per page.
    161155     *
    162      * @access public
    163156     * @var int
    164157     */
     
    168161     * An HTML string containing pagination links.
    169162     *
    170      * @access public
    171163     * @var string
    172164     */
     
    176168     * The total number of blogs matching the query parameters.
    177169     *
    178      * @access public
    179170     * @var int
    180171     */
  • trunk/src/bp-core/bp-core-admin.php

    r10160 r10248  
    9191     * Set admin-related globals.
    9292     *
    93      * @access private
    9493     * @since 1.6.0
    9594     */
     
    115114     *
    116115     * @since 1.6.0
    117      * @access private
    118116     */
    119117    private function includes() {
     
    129127     * Set up the admin hooks, actions, and filters.
    130128     *
    131      * @access private
    132129     * @since 1.6.0
    133130     *
  • trunk/src/bp-core/classes/class-bp-recursive-query.php

    r10108 r10248  
    2121     *
    2222     * @since 2.2.0
    23      * @access public
    2423     * @var array
    2524     */
     
    3635     *
    3736     * @since 2.2.0
    38      * @access protected
    3937     *
    4038     * @return array
     
    6058     *
    6159     * @since 2.2.0
    62      * @access protected
    6360     *
    6461     * @param  array $query Query to parse.
     
    140137     *
    141138     * @since 2.2.0
    142      * @access public
    143139     *
    144140     * @param array $queries Array of query clauses.
     
    208204     *
    209205     * @since 2.2.0
    210      * @access protected
    211206     *
    212207     * @param array $clause       Array of arguments belonging to the clause.
     
    226221     *
    227222     * @since 2.2.0
    228      * @access protected
    229223     *
    230224     * @param array $query Clause to check.
  • trunk/src/bp-core/classes/class-bp-user-query.php

    r10108 r10248  
    8282     * List of found users and their respective data.
    8383     *
    84      * @access public To allow components to manipulate them.
    8584     * @since 1.7.0
    8685     * @var array
     
    9190     * Total number of found users for the current query.
    9291     *
    93      * @access public To allow components to manipulate it.
    9492     * @since 1.7.0
    9593     * @var int
     
    10098     * List of found user IDs.
    10199     *
    102      * @access public To allow components to manipulate it.
    103100     * @since 1.7.0
    104101     * @var array
     
    109106     * SQL clauses for the user ID query.
    110107     *
    111      * @access public To allow components to manipulate it.
    112108     * @since 1.7.0
    113109     * @var array
     
    119115     *
    120116     * @since 2.2.0
    121      * @access public
    122117     * @var string
    123118     */
     
    135130     * Standard response when the query should not return any rows.
    136131     *
    137      * @access protected
    138132     * @since 1.7.0
    139133     * @var string
  • trunk/src/bp-forums/bp-forums-template.php

    r10183 r10248  
    109109     * The loop iterator.
    110110     *
    111      * @access public
    112111     * @var int
    113112     */
     
    117116     * The number of topics returned by the paged query.
    118117     *
    119      * @access public
    120118     * @var int
    121119     */
     
    125123     * Array of topics located by the query.
    126124     *
    127      * @access public
    128125     * @var array
    129126     */
     
    133130     * The topic object currently being iterated on.
    134131     *
    135      * @access public
    136132     * @var object
    137133     */
     
    141137     * The ID of the forum whose topics are being queried.
    142138     *
    143      * @access public
    144139     * @var int
    145140     */
     
    149144     * A flag for whether the loop is currently being iterated.
    150145     *
    151      * @access public
    152146     * @var bool
    153147     */
     
    157151     * The page number being requested.
    158152     *
    159      * @access public
    160153     * @var int
    161154     */
     
    165158     * The number of items being requested per page.
    166159     *
    167      * @access public
    168160     * @var int
    169161     */
     
    173165     * An HTML string containing pagination links.
    174166     *
    175      * @access public
    176167     * @var string
    177168     */
     
    181172     * The total number of topics matching the query parameters.
    182173     *
    183      * @access public
    184174     * @var int
    185175     */
     
    189179     * Whether requesting a single topic. Not currently used.
    190180     *
    191      * @access public
    192181     * @var bool
    193182     */
     
    197186     * Term to sort by. Not currently used.
    198187     *
    199      * @access public
    200188     * @var string
    201189     */
     
    205193     * Sort order. Not currently used.
    206194     *
    207      * @access public
    208195     * @var string
    209196     */
     
    19241911     * The loop iterator.
    19251912     *
    1926      * @access public
    19271913     * @var int
    19281914     */
     
    19321918     * The number of posts returned by the paged query.
    19331919     *
    1934      * @access public
    19351920     * @var int
    19361921     */
     
    19401925     * Array of posts located by the query.
    19411926     *
    1942      * @access public
    19431927     * @var array
    19441928     */
     
    19481932     * The post object currently being iterated on.
    19491933     *
    1950      * @access public
    19511934     * @var object
    19521935     */
     
    19561939     * The ID of the forum whose topic is being queried.
    19571940     *
    1958      * @access public
    19591941     * @var int
    19601942     */
     
    19641946     * The ID of the topic whose posts are being queried.
    19651947     *
    1966      * @access public
    19671948     * @var int
    19681949     */
     
    19721953     * The topic object to which the posts belong.
    19731954     *
    1974      * @access public
    19751955     * @var object
    19761956     */
     
    19801960     * A flag for whether the loop is currently being iterated.
    19811961     *
    1982      * @access public
    19831962     * @var bool
    19841963     */
     
    19971976     * The page number being requested.
    19981977     *
    1999      * @access public
    20001978     * @var int
    20011979     */
     
    20051983     * The number of items being requested per page.
    20061984     *
    2007      * @access public
    20081985     * @var int
    20091986     */
     
    20131990     * An HTML string containing pagination links.
    20141991     *
    2015      * @access public
    20161992     * @var string
    20171993     */
     
    20211997     * The total number of posts matching the query parameters.
    20221998     *
    2023      * @access public
    20241999     * @var int
    20252000     */
     
    20292004     * Whether requesting a single topic. Not currently used.
    20302005     *
    2031      * @access public
    20322006     * @var bool
    20332007     */
     
    20372011     * Term to sort by.
    20382012     *
    2039      * @access public
    20402013     * @var string
    20412014     */
     
    20452018     * Sort order.
    20462019     *
    2047      * @access public
    20482020     * @var string
    20492021     */
  • trunk/src/bp-friends/classes/class-bp-friends-friendship.php

    r10160 r10248  
    1818     * ID of the friendship.
    1919     *
    20      * @access public
    2120     * @var int
    2221     */
     
    2625     * User ID of the friendship initiator.
    2726     *
    28      * @access public
    2927     * @var int
    3028     */
     
    3432     * User ID of the 'friend' - the one invited to the friendship.
    3533     *
    36      * @access public
    3734     * @var int
    3835     */
     
    4239     * Has the friendship been confirmed/accepted?
    4340     *
    44      * @access public
    4541     * @var int
    4642     */
     
    5248     * Not currently used by BuddyPress.
    5349     *
    54      * @access public
    5550     * @var int
    5651     */
     
    6055     * Date the friendship was created.
    6156     *
    62      * @access public
    6357     * @var string
    6458     */
     
    7064     * Not currently used in BuddyPress.
    7165     *
    72      * @access public
    7366     * @var bool
    7467     */
     
    7871     * Should additional friend details be queried?
    7972     *
    80      * @access public
    8173     * @var bool
    8274     */
     
    8678     * Details about the friend.
    8779     *
    88      * @access public
    8980     * @var BP_Core_User
    9081     */
  • trunk/src/bp-groups/bp-groups-admin.php

    r10229 r10248  
    11371137     * @since 1.7.0
    11381138     *
    1139      * @access public
    11401139     * @var string
    11411140     */
     
    11471146     * @since 1.7.0
    11481147     *
    1149      * @access public
    11501148     * @var int
    11511149     */
     
    13051303     *
    13061304     * @since 2.3.3
    1307      * @access protected
    13081305     *
    13091306     * @return string
  • trunk/src/bp-groups/bp-groups-loader.php

    r10205 r10248  
    2020     *
    2121     * @since 1.5.0
    22      * @access public
    2322     * @var bool
    2423     */
     
    2928     *
    3029     * @since 1.5.0
    31      * @access public
    3230     * @var BP_Groups_Group
    3331     */
     
    3836     *
    3937     * @since 1.6.0
    40      * @access public
    4138     * @todo Is this used anywhere? Is this a duplicate of $default_extension?
    4239     */
     
    4744     *
    4845     * @since 1.6.0
    49      * @access public
    5046     * @var string
    5147     */
     
    5652     *
    5753     * @since 1.5.0
    58      * @access public
    5954     * @var array
    6055     */
     
    6560     *
    6661     * @since 1.5.0
    67      * @access public
    6862     * @var array
    6963     */
     
    7468     *
    7569     * @since 1.5.0
    76      * @access public
    7770     * @var array
    7871     */
  • trunk/src/bp-groups/bp-groups-template.php

    r10240 r10248  
    101101     * The loop iterator.
    102102     *
    103      * @access public
    104103     * @var int
    105104     */
     
    109108     * The number of groups returned by the paged query.
    110109     *
    111      * @access public
    112110     * @var int
    113111     */
     
    117115     * Array of groups located by the query.
    118116     *
    119      * @access public
    120117     * @var array
    121118     */
     
    125122     * The group object currently being iterated on.
    126123     *
    127      * @access public
    128124     * @var object
    129125     */
     
    133129     * A flag for whether the loop is currently being iterated.
    134130     *
    135      * @access public
    136131     * @var bool
    137132     */
     
    141136     * The page number being requested.
    142137     *
    143      * @access public
    144138     * @var string
    145139     */
     
    149143     * The number of items being requested per page.
    150144     *
    151      * @access public
    152145     * @var string
    153146     */
     
    157150     * An HTML string containing pagination links.
    158151     *
    159      * @access public
    160152     * @var string
    161153     */
     
    165157     * The total number of groups matching the query parameters.
    166158     *
    167      * @access public
    168159     * @var int
    169160     */
     
    173164     * Whether the template loop is for a single group page.
    174165     *
    175      * @access public
    176166     * @var bool
    177167     */
     
    181171     * Field to sort by.
    182172     *
    183      * @access public
    184173     * @var string
    185174     */
     
    189178     * Sort order.
    190179     *
    191      * @access public
    192180     * @var string
    193181     */
  • trunk/src/bp-groups/classes/class-bp-group-extension.php

    r10148 r10248  
    9696     *
    9797     * @since 1.8.0
    98      * @access public
    9998     * @var array
    10099     */
     
    105104     *
    106105     * @since 1.8.0
    107      * @access public
    108106     * @var string
    109107     */
     
    114112     *
    115113     * @since 1.8.0
    116      * @access public
    117114     * @var ReflectionClass
    118115     */
     
    123120     *
    124121     * @since 1.8.0
    125      * @access public
    126122     * @var array
    127123     */
     
    132128     *
    133129     * @since 2.1.0
    134      * @access public
    135130     * @var array
    136131     */
     
    141136     *
    142137     * @since 1.8.0
    143      * @access public
    144138     * @var int
    145139     */
     
    149143     * The slug of the current extension.
    150144     *
    151      * @access public
    152145     * @var string
    153146     */
     
    157150     * The translatable name of the current extension.
    158151     *
    159      * @access public
    160152     * @var string
    161153     */
     
    165157     * The visibility of the extension tab. 'public' or 'private'.
    166158     *
    167      * @access public
    168159     * @var string
    169160     */
     
    173164     * The numeric position of the main nav item.
    174165     *
    175      * @access public
    176166     * @var int
    177167     */
     
    181171     * Whether to show the nav item.
    182172     *
    183      * @access public
    184173     * @var bool
    185174     */
     
    190179     *
    191180     * @since 2.1.0
    192      * @access public
    193181     * @var bool
    194182     */
     
    199187     *
    200188     * @since 2.1.0
    201      * @access public
    202189     * @var bool
    203190     */
     
    207194     * The text of the nav item. Defaults to self::name.
    208195     *
    209      * @access public
    210196     * @var string
    211197     */
     
    217203     * Default: 'groups_custom_group_boxes'.
    218204     *
    219      * @access public
    220205     * @var string
    221206     */
     
    227212     * Default: 'groups/single/plugins'.
    228213     *
    229      * @access public
    230214     * @var string
    231215     */
     
    238222     *
    239223     * @since 1.8.0
    240      * @access protected
    241224     * @var bool
    242225     */
     
    247230     *
    248231     * @since 1.8.0
    249      * @access protected
    250232     * @var array
    251233     */
     
    259241     *
    260242     * @since 1.8.0
    261      * @access protected
    262243     * @var array
    263244     */
     
    268249     *
    269250     * @since 2.1.0
    270      * @access protected
    271251     * @var string
    272252     */
     
    277257     *
    278258     * @since 1.8.0
    279      * @access protected
    280259     * @var array
    281260     */
     
    10821061     *
    10831062     * @since 1.8.0
    1084      * @access public So that do_action() has access. Do not call directly.
    10851063     *
    10861064     * @see BP_Group_Extension::setup_edit_hooks()
  • trunk/src/bp-groups/classes/class-bp-group-member-query.php

    r10148 r10248  
    4646     *
    4747     * @since 1.8.1
    48      * @access protected
    4948     * @var null|array Null if not yet defined, otherwise an array of ints.
    5049     */
  • trunk/src/bp-groups/classes/class-bp-groups-group.php

    r10148 r10248  
    1818     * ID of the group.
    1919     *
    20      * @access public
    2120     * @var int
    2221     */
     
    2625     * User ID of the group's creator.
    2726     *
    28      * @access public
    2927     * @var int
    3028     */
     
    3432     * Name of the group.
    3533     *
    36      * @access public
    3734     * @var string
    3835     */
     
    4239     * Group slug.
    4340     *
    44      * @access public
    4541     * @var string
    4642     */
     
    5046     * Group description.
    5147     *
    52      * @access public
    5348     * @var string
    5449     */
     
    6055     * Core statuses are 'public', 'private', and 'hidden'.
    6156     *
    62      * @access public
    6357     * @var string
    6458     */
     
    6862     * Should (legacy) bbPress forums be enabled for this group?
    6963     *
    70      * @access public
    7164     * @var int
    7265     */
     
    7669     * Date the group was created.
    7770     *
    78      * @access public
    7971     * @var string
    8072     */
     
    8476     * Data about the group's admins.
    8577     *
    86      * @access public
    8778     * @var array
    8879     */
     
    9283     * Data about the group's moderators.
    9384     *
    94      * @access public
    9585     * @var array
    9686     */
     
    10090     * Total count of group members.
    10191     *
    102      * @access public
    10392     * @var int
    10493     */
     
    952941     *
    953942     * @since 1.8.0
    954      * @access protected
    955943     *
    956944     * @param array $meta_query An array of meta_query filters. See the
     
    1000988     *
    1001989     * @since 1.8.0
    1002      * @access protected
    1003990     *
    1004991     * @param string $type The 'type' shorthand param.
     
    11161103     *
    11171104     * @since 1.8.0
    1118      * @access protected
    11191105     *
    11201106     * @param string $orderby Orderby term as passed to get().
  • trunk/src/bp-groups/classes/class-bp-groups-member-suggestions.php

    r10148 r10248  
    2121     *
    2222     * @since 2.1.0
    23      * @access protected
    2423     * @var array $args {
    2524     *     @type int    $group_id     Positive integers will restrict the search to members in that group.
  • trunk/src/bp-groups/classes/class-bp-groups-member.php

    r10227 r10248  
    1818     * ID of the membership.
    1919     *
    20      * @access public
    2120     * @var int
    2221     */
     
    2625     * ID of the group associated with the membership.
    2726     *
    28      * @access public
    2927     * @var int
    3028     */
     
    3432     * ID of the user associated with the membership.
    3533     *
    36      * @access public
    3734     * @var int
    3835     */
     
    4239     * ID of the user whose invitation initiated the membership.
    4340     *
    44      * @access public
    4541     * @var int
    4642     */
     
    5046     * Whether the member is an admin of the group.
    5147     *
    52      * @access public
    5348     * @var int
    5449     */
     
    5853     * Whether the member is a mod of the group.
    5954     *
    60      * @access public
    6155     * @var int
    6256     */
     
    6660     * Whether the member is banned from the group.
    6761     *
    68      * @access public
    6962     * @var int
    7063     */
     
    7669     * Eg, 'Group Admin'.
    7770     *
    78      * @access public
    7971     * @var int
    8072     */
     
    8678     * This value is updated when, eg, invitations are accepted.
    8779     *
    88      * @access public
    8980     * @var string
    9081     */
     
    9485     * Whether the membership has been confirmed.
    9586     *
    96      * @access public
    9787     * @var int
    9888     */
     
    10595     * include when requesting membership to a private group.
    10696     *
    107      * @access public
    10897     * @var string
    10998     */
     
    118107     * invitee has not yet been notified.
    119108     *
    120      * @access public
    121109     * @var int
    122110     */
     
    126114     * WP_User object representing the membership's user.
    127115     *
    128      * @access public
    129116     * @var WP_User
    130117     */
  • trunk/src/bp-loader.php

    r10247 r10248  
    318318     *
    319319     * @since 1.6.0
    320      * @access private
    321320     *
    322321     * @uses plugin_dir_path() To generate BuddyPress plugin path.
     
    450449     *
    451450     * @since 1.6.0
    452      * @access private
    453451     *
    454452     * @uses is_admin() If in WordPress admin, load additional file.
     
    509507     *
    510508     * @since 1.6.0
    511      * @access private
    512509     *
    513510     * @uses register_activation_hook() To register the activation hook.
  • trunk/src/bp-members/admin/bp-members-admin-classes.php

    r10246 r10248  
    2424     * @since 2.0.0
    2525     *
    26      * @access public
    2726     * @var int
    2827     */
     
    411410     * @since 2.0.0
    412411     *
    413      * @access public
    414412     * @var int
    415413     */
     
    606604     *
    607605     * @since 2.4.0
    608      * @access protected
    609606     *
    610607     * @param object $signup_object Signup being acted upon.
  • trunk/src/bp-members/bp-members-admin.php

    r10229 r10248  
    5959     * Screen id for edit user's profile page.
    6060     *
    61      * @access public
    6261     * @var string
    6362     */
     
    6766     * Setup BP Members Admin.
    6867     *
    69      * @access public
    7068     * @since 2.0.0
    7169     *
     
    8987     * Constructor method.
    9088     *
    91      * @access public
    9289     * @since 2.0.0
    9390     */
     
    10097     * Set admin-related globals.
    10198     *
    102      * @access private
    10399     * @since 2.0.0
    104100     */
     
    159155     * Set admin-related actions and filters.
    160156     *
    161      * @access private
    162157     * @since 2.0.0
    163158     */
     
    246241     * in the future.
    247242     *
    248      * @access public
    249243     * @since 2.1.0
    250244     *
     
    363357     * Create the /user/ admin Profile submenus for all members.
    364358     *
    365      * @access public
    366359     * @since 2.1.0
    367360     *
     
    402395     * Create the All Users / Profile > Edit Profile and All Users Signups submenus.
    403396     *
    404      * @access public
    405397     * @since 2.0.0
    406398     *
     
    477469     * Highlight the Users menu if on Edit Profile and check if on the user's admin profile.
    478470     *
    479      * @access public
    480471     * @since 2.1.0
    481472     */
     
    537528     * subnav items under the Users menu.
    538529     *
    539      * @access public
    540530     * @since 2.0.0
    541531     */
     
    550540     * Add some specific styling to the Edit User and Edit User's Profile page.
    551541     *
    552      * @access public
    553542     * @since 2.0.0
    554543     */
     
    606595     * Create the Profile navigation in Edit User & Edit Profile pages.
    607596     *
    608      * @access public
    609597     * @since 2.0.0
    610598     *
     
    670658     * help, and setting up screen options.
    671659     *
    672      * @access public
    673660     * @since 2.0.0
    674661     */
     
    846833     * Display the user's profile.
    847834     *
    848      * @access public
    849835     * @since 2.0.0
    850836     */
     
    955941     * - Spam/Unspam user
    956942     *
    957      * @access public
    958943     * @since 2.0.0
    959944     *
     
    10321017     * Render the fallback metabox in case a user has been marked as a spammer.
    10331018     *
    1034      * @access public
    10351019     * @since 2.0.0
    10361020     *
     
    10461030     * Render the Stats metabox to moderate inappropriate images.
    10471031     *
    1048      * @access public
    10491032     * @since 2.0.0
    10501033     *
     
    10971080     *
    10981081     * @since 2.2.0
    1099      * @access public
    11001082     *
    11011083     * @param WP_User $user The WP_User object to be edited.
     
    11281110     *
    11291111     * @since 2.2.0
    1130      * @access public
    11311112     */
    11321113    public function process_member_type_update() {
     
    11621143     * Add a link to Profile in Users listing row actions.
    11631144     *
    1164      * @access public
    11651145     * @since 2.0.0
    11661146     *
     
    12221202     * Add a filter to edit profile url in WP Admin Bar.
    12231203     *
    1224      * @access public
    12251204     * @since 2.1.0
    12261205     */
     
    12321211     * Filter the profile url.
    12331212     *
    1234      * @access public
    12351213     * @since 2.1.0
    12361214     *
     
    12531231     * Remove the filter to edit profile url in WP Admin Bar.
    12541232     *
    1255      * @access public
    12561233     * @since 2.1.0
    12571234     */
     
    12651242     * Display the admin preferences about signups pagination.
    12661243     *
    1267      * @access public
    12681244     * @since 2.0.0
    12691245     *
  • trunk/src/bp-members/bp-members-loader.php

    r10149 r10248  
    1717     * @see bp_register_member_type()
    1818     *
    19      * @access public
    2019     * @since  2.2.0
    2120     * @var    array
  • trunk/src/bp-members/bp-members-template.php

    r10157 r10248  
    214214     * The loop iterator.
    215215     *
    216      * @access public
    217216     * @var int
    218217     */
     
    222221     * The number of members returned by the paged query.
    223222     *
    224      * @access public
    225223     * @var int
    226224     */
     
    230228     * Array of members located by the query.
    231229     *
    232      * @access public
    233230     * @var array
    234231     */
     
    238235     * The member object currently being iterated on.
    239236     *
    240      * @access public
    241237     * @var object
    242238     */
     
    246242     * A flag for whether the loop is currently being iterated.
    247243     *
    248      * @access public
    249244     * @var bool
    250245     */
     
    254249     * The type of member being requested. Used for ordering results.
    255250     *
    256      * @access public
    257251     * @var string
    258252     */
     
    262256     * The unique string used for pagination queries.
    263257     *
    264      * @access public
    265258     * @var string
    266259     */
     
    270263     * The page number being requested.
    271264     *
    272      * @access public
    273265     * @var string
    274266     */
     
    278270     * The number of items being requested per page.
    279271     *
    280      * @access public
    281272     * @var string
    282273     */
     
    286277     * An HTML string containing pagination links.
    287278     *
    288      * @access public
    289279     * @var string
    290280     */
     
    294284     * The total number of members matching the query parameters.
    295285     *
    296      * @access public
    297286     * @var int
    298287     */
  • trunk/src/bp-messages/bp-messages-template.php

    r10139 r10248  
    1818     * The loop iterator.
    1919     *
    20      * @access public
    2120     * @var int
    2221     */
     
    2625     * The number of threads returned by the paged query.
    2726     *
    28      * @access public
    2927     * @var int
    3028     */
     
    3432     * Total number of threads matching the query params.
    3533     *
    36      * @access public
    3734     * @var int
    3835     */
     
    4239     * Array of threads located by the query.
    4340     *
    44      * @access public
    4541     * @var array
    4642     */
     
    5046     * The thread object currently being iterated on.
    5147     *
    52      * @access public
    5348     * @var object
    5449     */
     
    5853     * A flag for whether the loop is currently being iterated.
    5954     *
    60      * @access public
    6155     * @var bool
    6256     */
     
    6660     * User ID of the current inbox.
    6761     *
    68      * @access public
    6962     * @var int
    7063     */
     
    7467     * The current "box" view ('notices', 'sentbox', 'inbox').
    7568     *
    76      * @access public
    7769     * @var string
    7870     */
     
    8274     * The page number being requested.
    8375     *
    84      * @access public
    8576     * @var int
    8677     */
     
    9081     * The number of items being requested per page.
    9182     *
    92      * @access public
    9383     * @var int
    9484     */
     
    9888     * An HTML string containing pagination links.
    9989     *
    100      * @access public
    10190     * @var string
    10291     */
     
    10695     * Search terms for limiting the thread query.
    10796     *
    108      * @access public
    10997     * @var string
    11098     */
     
    17721760     * The loop iterator.
    17731761     *
    1774      * @access public
    17751762     * @var int
    17761763     */
     
    17801767     * Number of messages returned by the paged query.
    17811768     *
    1782      * @access public
    17831769     * @var int
    17841770     */
     
    17881774     * The message object currently being iterated on.
    17891775     *
    1790      * @access public
    17911776     * @var object
    17921777     */
     
    17961781     * Thread that the current messages belong to.
    17971782     *
    1798      * @access public
    17991783     * @var BP_Messages_Thread
    18001784     */
     
    18041788     * A flag for whether the loop is currently being iterated.
    18051789     *
    1806      * @access public
    18071790     * @var bool
    18081791     */
     
    18121795     * The page number being requested.
    18131796     *
    1814      * @access public
    18151797     * @var int
    18161798     */
     
    18201802     * The number of items being requested per page.
    18211803     *
    1822      * @access public
    18231804     * @var int
    18241805     */
     
    18281809     * An HTML string containing pagination links.
    18291810     *
    1830      * @access public
    18311811     * @var string
    18321812     */
     
    18361816     * The total number of messages matching the query.
    18371817     *
    1838      * @access public
    18391818     * @var int
    18401819     */
  • trunk/src/bp-notifications/bp-notifications-template.php

    r10138 r10248  
    136136     *
    137137     * @since 1.9.0
    138      * @access public
    139138     * @var int
    140139     */
     
    145144     *
    146145     * @since 1.9.0
    147      * @access public
    148146     * @var int
    149147     */
     
    154152     *
    155153     * @since 1.9.0
    156      * @access public
    157154     * @var int
    158155     */
     
    163160     *
    164161     * @since 1.9.0
    165      * @access public
    166162     * @var array
    167163     */
     
    172168     *
    173169     * @since 1.9.0
    174      * @access public
    175170     * @var object
    176171     */
     
    181176     *
    182177     * @since 1.9.0
    183      * @access public
    184178     * @var bool
    185179     */
     
    190184     *
    191185     * @since 1.9.0
    192      * @access public
    193186     * @var int
    194187     */
     
    199192     *
    200193     * @since 1.9.0
    201      * @access public
    202194     * @var int
    203195     */
     
    208200     *
    209201     * @since 1.9.0
    210      * @access public
    211202     * @var int
    212203     */
     
    217208     *
    218209     * @since 1.9.0
    219      * @access public
    220210     * @var int
    221211     */
     
    226216     *
    227217     * @since 1.9.0
    228      * @access public
    229218     * @var string
    230219     */
     
    235224     *
    236225     * @since 1.9.0
    237      * @access public
    238226     * @var string
    239227     */
     
    244232     *
    245233     * @since 1.9.0
    246      * @access public
    247234     * @var string
    248235     */
     
    253240     *
    254241     * @since 1.9.0
    255      * @access public
    256242     * @var string
    257243     */
  • trunk/src/bp-notifications/classes/class-bp-notifications-notification.php

    r10210 r10248  
    2727     *
    2828     * @since 1.9.0
    29      * @access public
    3029     * @var int
    3130     */
     
    3635     *
    3736     * @since 1.9.0
    38      * @access public
    3937     * @var int
    4038     */
     
    4543     *
    4644     * @since 1.9.0
    47      * @access public
    4845     * @var int
    4946     */
     
    5451     *
    5552     * @since 1.9.0
    56      * @access public
    5753     * @var int
    5854     */
     
    6359     *
    6460     * @since 1.9.0
    65      * @access public
    6661     * @var string
    6762     */
     
    7267     *
    7368     * @since 1.9.0
    74      * @access public
    7569     * @var string
    7670     */
     
    8175     *
    8276     * @since 1.9.0
    83      * @access public
    8477     * @var string
    8578     */
     
    9083     *
    9184     * @since 1.9.0
    92      * @access public
    9385     * @var bool
    9486     */
  • trunk/src/bp-templates/bp-legacy/buddypress-functions.php

    r10237 r10248  
    5656     *
    5757     * @since 1.7.0
    58      * @access private
    5958     */
    6059    protected function setup_globals() {
     
    7170     *
    7271     * @since 1.7.0
    73      * @access private
    7472     *
    7573     * @uses add_filter() To add various filters
     
    373371     *
    374372     * @since 1.8.0
    375      * @access private
    376373     * @param string $file A filename like buddypress.css.
    377374     * @param string $type Optional. Either "js" or "css" (the default).
  • trunk/src/bp-xprofile/bp-xprofile-admin.php

    r10239 r10248  
    676676     * Setup xProfile User Admin.
    677677     *
    678      * @access public
    679678     * @since 2.0.0
    680679     *
     
    700699     * Constructor method.
    701700     *
    702      * @access public
    703701     * @since 2.0.0
    704702     */
     
    710708     * Set admin-related actions and filters.
    711709     *
    712      * @access private
    713710     * @since 2.0.0
    714711     */
     
    727724     * Enqueue needed scripts.
    728725     *
    729      * @access public
    730726     * @since 2.3.0
    731727     *
     
    759755     * Register the xProfile metabox on Community Profile admin page.
    760756     *
    761      * @access public
    762757     * @since 2.0.0
    763758     *
     
    834829     * requests.
    835830     *
    836      * @access public
    837831     * @since 2.0.0
    838832     *
     
    963957     * Render the xprofile metabox for Community Profile screen.
    964958     *
    965      * @access public
    966959     * @since 2.0.0
    967960     *
     
    10701063     * Render the fallback metabox in case a user has been marked as a spammer.
    10711064     *
    1072      * @access public
    10731065     * @since 2.0.0
    10741066     *
     
    10841076     * Render the Avatar metabox to moderate inappropriate images.
    10851077     *
    1086      * @access public
    10871078     * @since 2.0.0
    10881079     *
  • trunk/src/bp-xprofile/bp-xprofile-template.php

    r10232 r10248  
    2323     *
    2424     * @since 1.5.0
    25      * @access public
    2625     * @var int
    2726     */
     
    3231     *
    3332     * @since 1.5.0
    34      * @access public
    3533     * @var int
    3634     */
     
    4139     *
    4240     * @since 1.5.0
    43      * @access public
    4441     * @var array
    4542     */
     
    5047     *
    5148     * @since 1.5.0
    52      * @access public
    5349     * @var object
    5450     */
     
    5955     *
    6056     * @since 1.5.0
    61      * @access public
    6257     * @var int
    6358     */
     
    6863     *
    6964     * @since 1.5.0
    70      * @access public
    7165     * @var int
    7266     */
     
    7771     *
    7872     * @since 1.5.0
    79      * @access public
    8073     * @var bool
    8174     */
     
    8679     *
    8780     * @since 1.5.0
    88      * @access public
    8981     * @var int
    9082     */
     
    9587     *
    9688     * @since 1.5.0
    97      * @access public
    9889     * @var bool
    9990     */
     
    10495     *
    10596     * @since 1.5.0
    106      * @access public
    10797     * @var int
    10898     */
  • trunk/src/bp-xprofile/classes/class-bp-xprofile-field.php

    r10243 r10248  
    126126     * @since 2.4.0 Property marked protected. Now accessible by magic method or by `get_default_visibility()`.
    127127     *
    128      * @access protected
    129128     * @var string Default field data visibility.
    130129     */
     
    137136     * @since 2.4.0 Property marked protected. Now accessible by magic method or by `get_allow_custom_visibility()`.
    138137     *
    139      * @access protected
    140138     * @var string Members are allowed/disallowed to modify data visibility.
    141139     */
     
    164162     *
    165163     * @since 2.4.0
    166      * @access protected
    167164     * @var array Array of member types.
    168165     */
  • trunk/src/bp-xprofile/classes/class-bp-xprofile-meta-query.php

    r10163 r10248  
    3030     *
    3131     * @since 2.3.0
    32      * @access protected
    3332     *
    3433     * @param array $query Meta query arguments.
     
    4443     *
    4544     * @since 2.3.0
    46      * @access public
    4745     *
    4846     * @param array $qv The query variables.
     
    9795     *
    9896     * @since 2.3.0
    99      * @access public
    10097     *
    10198     * @param string $type              Type of meta, eg 'user', 'post'.
     
    157154     *
    158155     * @since 2.3.0
    159      * @access public
    160156     *
    161157     * @param array  $clause       Query clause, passed by reference.
  • trunk/src/bp-xprofile/classes/class-bp-xprofile-query.php

    r10163 r10248  
    2323     *
    2424     * @since 2.2.0
    25      * @access public
    2625     * @var    array
    2726     */
     
    3231     *
    3332     * @since 2.2.0
    34      * @access public
    3533     * @var    string
    3634     */
     
    4139     *
    4240     * @since 2.2.0
    43      * @access public
    4441     * @var    string
    4542     */
     
    5047     *
    5148     * @since 2.2.0
    52      * @access protected
    5349     * @var    array
    5450     */
     
    5955     *
    6056     * @since 2.2.0
    61      * @access public
    6257     *
    6358     * @param array $xprofile_query {
     
    9590     *
    9691     * @since 2.2.0
    97      * @access public
    9892     *
    9993     * @param array $queries Array of query clauses.
     
    163157     *
    164158     * @since 2.2.0
    165      * @access protected
    166159     *
    167160     * @param  array $query XProfile query arguments.
     
    177170     *
    178171     * @since 2.2.0
    179      * @access public
    180172     *
    181173     * @param string $type MySQL type to cast `value`.
     
    208200     *
    209201     * @since 2.2.0
    210      * @access protected
    211202     *
    212203     * @return array {
     
    238229     *
    239230     * @since 2.2.0
    240      * @access protected
    241231     *
    242232     * @param  array $query Query to parse.
     
    320310     *
    321311     * @since 2.2.0
    322      * @access public
    323312     *
    324313     * @param string $primary_table     Database table where the object being filtered is stored (eg wp_users).
     
    356345     *
    357346     * @since 2.2.0
    358      * @access public
    359347     *
    360348     * @param array $clause       Query clause.
     
    507495     *
    508496     * @since 2.2.0
    509      * @access protected
    510497     *
    511498     * @param array $clause       Query clause.
Note: See TracChangeset for help on using the changeset viewer.