Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/27/2015 05:25:02 AM (11 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/bp-groups-template.php

    r10126 r10148  
    11<?php
    2 
    32/**
    43 * BuddyPress Groups Template Functions.
    5  */
    6 
    7 // Exit if accessed directly
     4 *
     5 * @package BuddyPress
     6 * @subpackage GroupsTemplates
     7 */
     8
     9// Exit if accessed directly.
    810defined( 'ABSPATH' ) || exit;
    911
     
    1113 * Output the groups component slug.
    1214 *
    13  * @since BuddyPress (1.5.0)
     15 * @since 1.5.0
    1416 */
    1517function bp_groups_slug() {
     
    1921         * Return the groups component slug.
    2022         *
    21          * @since BuddyPress (1.5.0)
     23         * @since 1.5.0
    2224         *
    2325         * @return string
     
    2830                 * Filters the groups component slug.
    2931                 *
    30                  * @since BuddyPress (1.5.0)
     32                 * @since 1.5.0
    3133                 *
    3234                 * @param string $slug Groups component slug.
     
    3840 * Output the groups component root slug.
    3941 *
    40  * @since BuddyPress (1.5.0)
     42 * @since 1.5.0
    4143 */
    4244function bp_groups_root_slug() {
     
    4648         * Return the groups component root slug.
    4749         *
    48          * @since BuddyPress (1.5.0)
     50         * @since 1.5.0
    4951         *
    5052         * @return string
     
    5557                 * Filters the groups component root slug.
    5658                 *
    57                  * @since BuddyPress (1.5.0)
     59                 * @since 1.5.0
    5860                 *
    5961                 * @param string $root_slug Groups component root slug.
     
    6567 * Output group directory permalink.
    6668 *
    67  * @since BuddyPress (1.5.0)
     69 * @since 1.5.0
    6870 */
    6971function bp_groups_directory_permalink() {
     
    7375         * Return group directory permalink.
    7476         *
    75          * @since BuddyPress (1.5.0)
     77         * @since 1.5.0
    7678         *
    7779         * @return string
     
    8284                 * Filters the group directory permalink.
    8385                 *
    84                  * @since BuddyPress (1.5.0)
     86                 * @since 1.5.0
    8587                 *
    8688                 * @param string $value Permalink for the group directory.
     
    427429                         * Fires right before the rewinding of groups list.
    428430                         *
    429                          * @since BuddyPress (1.5.0)
     431                         * @since 1.5.0
    430432                         */
    431433                        do_action('group_loop_end');
     
    456458                         * Fires if the current group item is the first in the loop.
    457459                         *
    458                          * @since BuddyPress (1.1.0)
     460                         * @since 1.1.0
    459461                         */
    460462                        do_action( 'group_loop_start' );
     
    466468 * Start the Groups Template Loop.
    467469 *
    468  * @since BuddyPress (1.0.0)
     470 * @since 1.0.0
    469471 *
    470472 * @param array|string $args {
     
    587589         * Filters whether or not there are groups to iterate over for the groups loop.
    588590         *
    589          * @since BuddyPress (1.1.0)
     591         * @since 1.1.0
    590592         *
    591593         * @param bool               $value           Whether or not there are groups to iterate over.
     
    671673                 * Filters the ID of the current group in the loop.
    672674                 *
    673                  * @since BuddyPress (1.0.0)
     675                 * @since 1.0.0
    674676                 *
    675677                 * @param int $id ID of the current group in the loop.
     
    681683 * Output the row class of the current group in the loop.
    682684 *
    683  * @since BuddyPress (1.7.0)
     685 * @since 1.7.0
    684686 *
    685687 * @param array $classes Array of custom classes.
     
    691693         * Get the row class of the current group in the loop.
    692694         *
    693          * @since BuddyPress (1.7.0)
     695         * @since 1.7.0
    694696         *
    695697         * @param array $classes Array of custom classes.
     
    742744                 * Filters classes that will be applied to row class of the current group in the loop.
    743745                 *
    744                  * @since BuddyPress (1.7.0)
     746                 * @since 1.7.0
    745747                 *
    746748                 * @param array $classes Array of determined classes for the row.
     
    780782                 * Filters the name of the current group in the loop.
    781783                 *
    782                  * @since BuddyPress (1.0.0)
     784                 * @since 1.0.0
    783785                 *
    784786                 * @param string $name Name of the current group in the loop.
     
    825827         * Filters the type for the current group in the loop.
    826828         *
    827          * @since BuddyPress (1.0.0)
     829         * @since 1.0.0
    828830         *
    829831         * @param string $type Type for the current group in the loop.
     
    858860                 * Filters the status of the current group in the loop.
    859861                 *
    860                  * @since BuddyPress (1.0.0)
     862                 * @since 1.0.0
    861863                 *
    862864                 * @param string $status Status of the current group in the loop.
     
    868870 * Output the group avatar while in the groups loop.
    869871 *
    870  * @since BuddyPress (1.0.0)
     872 * @since 1.0.0
    871873 *
    872874 * @param array|string $args {
     
    880882         * Get a group's avatar.
    881883         *
    882          * @since BuddyPress (1.0.0)
     884         * @since 1.0.0
    883885         *
    884886         * @see bp_core_fetch_avatar() For a description of arguments and return values.
     
    937939                 * Filters the group avatar while in the groups loop.
    938940                 *
    939                  * @since BuddyPress (1.0.0)
     941                 * @since 1.0.0
    940942                 *
    941943                 * @param string $avatar HTML image element holding the group avatar.
     
    948950 * Output the group avatar thumbnail while in the groups loop.
    949951 *
    950  * @since BuddyPress (1.0.0)
     952 * @since 1.0.0
    951953 *
    952954 * @param object|bool $group Optional. Group object.
     
    959961         * Return the group avatar thumbnail while in the groups loop.
    960962         *
    961          * @since BuddyPress (1.0.0)
     963         * @since 1.0.0
    962964         *
    963965         * @param object|bool $group Optional. Group object.
     
    976978 * Output the miniature group avatar thumbnail while in the groups loop.
    977979 *
    978  * @since BuddyPress (1.0.0)
     980 * @since 1.0.0
    979981 *
    980982 * @param object|bool $group Optional. Group object.
     
    987989         * Return the miniature group avatar thumbnail while in the groups loop.
    988990         *
    989          * @since BuddyPress (1.0.0)
     991         * @since 1.0.0
    990992         *
    991993         * @param object|bool $group Optional. Group object.
     
    10401042                         * Filters the 'last active' string for the current gorup in the loop.
    10411043                         *
    1042                          * @since BuddyPress (1.0.0)
     1044                         * @since 1.0.0
    10431045                         *
    10441046                         * @param string $value Determined last active value for the current group.
     
    10751077                 * Filters the permalink for the current group in the loop.
    10761078                 *
    1077                  * @since BuddyPress (1.0.0)
     1079                 * @since 1.0.0
    10781080                 *
    10791081                 * @param string $value Permalink for the current group in the loop.
     
    11091111                 * Filters the permalink for the admin section of the current group in the loop.
    11101112                 *
    1111                  * @since BuddyPress (1.0.0)
     1113                 * @since 1.0.0
    11121114                 *
    11131115                 * @param string $value Permalink for the admin section of the current group in the loop.
     
    11431145                 * Filters the slug for the current group in the loop.
    11441146                 *
    1145                  * @since BuddyPress (1.0.0)
     1147                 * @since 1.0.0
    11461148                 *
    11471149                 * @param string $slug Slug for the current group in the loop.
     
    11771179                 * Filters the description for the current group in the loop.
    11781180                 *
    1179                  * @since BuddyPress (1.0.0)
     1181                 * @since 1.0.0
    11801182                 *
    11811183                 * @param string $value Description for the current group.
     
    12191221             * appropriate for "raw" editing.
    12201222                 *
    1221                  * @since BuddyPress (1.0.0)
     1223                 * @since 1.0.0
    12221224                 *
    12231225                 * @param string $description Description for the current group in the loop.
     
    12551257                 * Filters the excerpt of a group description.
    12561258                 *
    1257                  * @since BuddyPress (1.0.0)
     1259                 * @since 1.0.0
    12581260                 *
    12591261                 * @param string $value Excerpt of a group description.
     
    13561358                 * Filters the created date of the current group in the loop.
    13571359                 *
    1358                  * @since BuddyPress (1.0.0)
     1360                 * @since 1.0.0
    13591361                 *
    13601362                 * @param string $value Created date for the current group.
     
    13901392                 * Filters the username of the creator of the current group in the loop.
    13911393                 *
    1392                  * @since BuddyPress (1.7.0)
     1394                 * @since 1.7.0
    13931395                 *
    13941396                 * @param string $value Username of the group creator.
     
    14241426                 * Filters the user ID of the creator of the current group in the loop.
    14251427                 *
    1426                  * @since BuddyPress (1.7.0)
     1428                 * @since 1.7.0
    14271429                 *
    14281430                 * @param int $creator_id User ID of the group creator.
     
    14581460                 * Filters the permalink of the creator of the current group in the loop.
    14591461                 *
    1460                  * @since BuddyPress (1.7.0)
     1462                 * @since 1.7.0
    14611463                 *
    14621464                 * @param string $value Permalink of the group creator.
     
    15431545                 * Filters the avatar of the creator of the current group in the loop.
    15441546                 *
    1545                  * @since BuddyPress (1.7.0)
     1547                 * @since 1.7.0
    15461548                 *
    15471549                 * @param string $avatar Avatar of the group creator.
     
    16631665 * Return a list of user IDs for a group's admins.
    16641666 *
    1665  * @since BuddyPress (1.5.0)
     1667 * @since 1.5.0
    16661668 *
    16671669 * @param BP_Groups_Group|bool $group     Optional. The group being queried. Defaults
     
    16951697         * This filter may return either an array or a comma separated string.
    16961698         *
    1697          * @since BuddyPress (1.5.0)
     1699         * @since 1.5.0
    16981700         *
    16991701         * @param array|string $admin_ids List of user IDs for a group's admins.
     
    17051707 * Return a list of user IDs for a group's moderators.
    17061708 *
    1707  * @since BuddyPress (1.5.0)
     1709 * @since 1.5.0
    17081710 *
    17091711 * @param BP_Groups_Group|bool $group   Optional. The group being queried.
     
    17371739         * This filter may return either an array or a comma separated string.
    17381740         *
    1739          * @since BuddyPress (1.5.0)
     1741         * @since 1.5.0
    17401742         *
    17411743         * @param array|string $admin_ids List of user IDs for a group's moderators.
     
    17681770                 * Filters the permalink of the Members page for the current group in the loop.
    17691771                 *
    1770                  * @since BuddyPress (1.0.0)
     1772                 * @since 1.0.0
    17711773                 *
    17721774                 * @param string $value Permalink of the Members page for the current group.
     
    18501852                 * Filters the pagination HTML for a group loop.
    18511853                 *
    1852                  * @since BuddyPress (1.2.0)
     1854                 * @since 1.2.0
    18531855                 *
    18541856                 * @param string $pag_links HTML markup for the pagination links.
     
    18851887                 * Filters the "Viewing x-y of z groups" pagination message.
    18861888                 *
    1887                  * @since BuddyPress (1.5.0)
     1889                 * @since 1.5.0
    18881890                 *
    18891891                 * @param string $message  "Viewing x-y of z groups" text.
     
    19411943                 * Filters the total member count for a group.
    19421944                 *
    1943                  * @since BuddyPress (1.0.0)
     1945                 * @since 1.0.0
    19441946                 *
    19451947                 * @param int $total_member_count Total member count for a group.
     
    19731975                 * Filters the "x members" count string for a group.
    19741976                 *
    1975                  * @since BuddyPress (1.2.0)
     1977                 * @since 1.2.0
    19761978                 *
    19771979                 * @param string $count_string The "x members" count string for a group.
     
    20042006                 * Filters the URL of the Forum page of a group.
    20052007                 *
    2006                  * @since BuddyPress (1.0.0)
     2008                 * @since 1.0.0
    20072009                 *
    20082010                 * @param string $value URL permalink for the Forum Page.
     
    20652067                 * Filters the topic count string for a group forum.
    20662068                 *
    2067                  * @since BuddyPress (1.2.0)
     2069                 * @since 1.2.0
    20682070                 *
    20692071                 * @param string $total_topics Total topic count string.
     
    21272129                 * Filters the post count string for a group forum.
    21282130                 *
    2129                  * @since BuddyPress (1.2.0)
     2131                 * @since 1.2.0
    21302132                 *
    21312133                 * @param string $total_posts Total post count string.
     
    21942196 * Output the 'checked' value, if needed, for a given invite_status on the group create/admin screens
    21952197 *
    2196  * @since BuddyPress (1.5.0)
     2198 * @since 1.5.0
    21972199 *
    21982200 * @param string      $setting The setting you want to check against ('members',
     
    22212223 * This function can be used either in or out of the loop.
    22222224 *
    2223  * @since BuddyPress (1.5.0)
     2225 * @since 1.5.0
    22242226 *
    22252227 * @param int|bool $group_id Optional. The ID of the group whose status you want to
     
    22602262         * Invite status in this case means who from the group can send invites.
    22612263         *
    2262          * @since BuddyPress (1.5.0)
     2264         * @since 1.5.0
    22632265         *
    22642266         * @param string $invite_status Membership level needed to send an invite.
     
    22712273 * Can a user send invitations in the specified group?
    22722274 *
    2273  * @since BuddyPress (1.5.0)
    2274  * @since BuddyPress (2.2.0) Added the $user_id parameter.
     2275 * @since 1.5.0
     2276 * @since 2.2.0 Added the $user_id parameter.
    22752277 *
    22762278 * @param int $group_id The group ID to check.
     
    23242326         * Filters whether a user can send invites in a group.
    23252327         *
    2326          * @since BuddyPress (1.5.0)
    2327          * @since BuddyPress (2.2.0) Added the $user_id parameter.
     2328         * @since 1.5.0
     2329         * @since 2.2.0 Added the $user_id parameter.
    23282330         *
    23292331         * @param bool $can_send_invites Whether the user can send invites
     
    23412343 * @deprecated 1.5
    23422344 * @deprecated No longer used.
    2343  * @since BuddyPress (1.0.0)
     2345 * @since 1.0.0
    23442346 * @todo Remove in 1.4
    23452347 *
     
    25062508         * Filters whether a group has moderators.
    25072509         *
    2508          * @since BuddyPress (1.0.0)
     2510         * @since 1.0.0
    25092511         *
    25102512         * @param array $value Array of user IDs who are a moderator of the provided group.
     
    25452547                 * Filters a URL for promoting a user to moderator.
    25462548                 *
    2547                  * @since BuddyPress (1.1.0)
     2549                 * @since 1.1.0
    25482550                 *
    25492551                 * @param string $value URL to use for promoting a user to moderator.
     
    25842586                 * Filters a URL for promoting a user to admin.
    25852587                 *
    2586                  * @since BuddyPress (1.1.0)
     2588                 * @since 1.1.0
    25872589                 *
    25882590                 * @param string $value URL to use for promoting a user to admin.
     
    26292631                 * Filters a URL for demoting a user to member.
    26302632                 *
    2631                  * @since BuddyPress (1.0.0)
     2633                 * @since 1.0.0
    26322634                 *
    26332635                 * @param string $value URL to use for demoting a user to member.
     
    26702672                 * Filters a URL for banning a member from a group.
    26712673                 *
    2672                  * @since BuddyPress (1.0.0)
     2674                 * @since 1.0.0
    26732675                 *
    26742676                 * @param string $value URL to use for banning a member.
     
    27152717                 * Filters a URL for unbanning a member from a group.
    27162718                 *
    2717                  * @since BuddyPress (1.0.0)
     2719                 * @since 1.0.0
    27182720                 *
    27192721                 * @param string $value URL to use for unbanning a member.
     
    27562758                 * Filters a URL for removing a member from a group.
    27572759                 *
    2758                  * @since BuddyPress (1.2.6)
     2760                 * @since 1.2.6
    27592761                 *
    27602762                 * @param string $value URL to use for removing a member.
     
    28372839                 * FIlters the group count for a displayed user.
    28382840                 *
    2839                  * @since BuddyPress (1.1.0)
     2841                 * @since 1.1.0
    28402842                 *
    28412843                 * @param int $value Total group count for a displayed user.
     
    28712873                 * Filters the 'action' attribute for a group form.
    28722874                 *
    2873                  * @since BuddyPress (1.0.0)
     2875                 * @since 1.0.0
    28742876                 *
    28752877                 * @param string $value Action attribute for a group form.
     
    29092911                 * Filters the 'action' attribute for a group admin form.
    29102912                 *
    2911                  * @since BuddyPress (1.0.0)
     2913                 * @since 1.0.0
    29122914                 *
    29132915                 * @param string $value Action attribute for a group admin form.
     
    29632965         * Filters whether current user is member of a group.
    29642966         *
    2965          * @since BuddyPress (1.2.4)
     2967         * @since 1.2.4
    29662968         *
    29672969         * @param bool $is_member If user is a member of group or not.
     
    29882990         * Filters whether current user has an outstanding invite to current group in loop.
    29892991         *
    2990          * @since BuddyPress (2.1.0)
     2992         * @since 2.1.0
    29912993         *
    29922994         * @param bool $is_invited If user has an outstanding group invite.
     
    30083010 * capability, the return value would be boolean false.
    30093011 *
    3010  * @since BuddyPress (1.5.0)
     3012 * @since 1.5.0
    30113013 *
    30123014 * @global BP_Groups_Template $groups_template Group template loop object.
     
    30513053         * Filters whether current user has been banned from current group in loop.
    30523054         *
    3053          * @since BuddyPress (1.5.0)
     3055         * @since 1.5.0
    30543056         *
    30553057         * @param bool $is_invited If user has been from current group.
     
    30843086                 * Filters the URL for accepting an invitation to a group.
    30853087                 *
    3086                  * @since BuddyPress (1.0.0)
     3088                 * @since 1.0.0
    30873089                 *
    30883090                 * @param string $value URL for accepting an invitation to a group.
     
    31173119                 * Filters the URL for rejecting an invitation to a group.
    31183120                 *
    3119                  * @since BuddyPress (1.0.0)
     3121                 * @since 1.0.0
    31203122                 *
    31213123                 * @param string $value URL for rejecting an invitation to a group.
     
    31483150                 * Filters the URL for confirming a request to leave a group.
    31493151                 *
    3150                  * @since BuddyPress (1.0.0)
     3152                 * @since 1.0.0
    31513153                 *
    31523154                 * @param string $value URL for confirming a request to leave a group.
     
    31793181                 * Filters the URL for rejecting a request to leave a group.
    31803182                 *
    3181                  * @since BuddyPress (1.0.0)
     3183                 * @since 1.0.0
    31823184                 *
    31833185                 * @param string $value URL for rejecting a request to leave a group.
     
    32103212                 * Filters the 'action' attribute for a group send invite form.
    32113213                 *
    3212                  * @since BuddyPress (1.0.0)
     3214                 * @since 1.0.0
    32133215                 *
    32143216                 * @param string $value Action attribute for a group send invite form.
     
    32463248 * Output a 'New Topic' button for a group.
    32473249 *
    3248  * @since BuddyPress (1.2.7)
     3250 * @since 1.2.7
    32493251 *
    32503252 * @param BP_Groups_Group|bool $group The BP Groups_Group object if passed,
     
    32583260         * Returns a 'New Topic' button for a group.
    32593261         *
    3260          * @since BuddyPress (1.2.7)
     3262         * @since 1.2.7
    32613263         *
    32623264         * @param BP_Groups_Group|bool $group The BP Groups_Group object if
     
    32923294                 * Filters the HTML button for creating a new topic in a group.
    32933295                 *
    3294                  * @since BuddyPress (1.5.0)
     3296                 * @since 1.5.0
    32953297                 *
    32963298                 * @param string $button HTML button for a new topic.
     
    33023304 * Output button to join a group.
    33033305 *
    3304  * @since BuddyPress (1.0.0)
     3306 * @since 1.0.0
    33053307 *
    33063308 * @param object|bool $group Single group object.
     
    33123314         * Return button to join a group.
    33133315         *
    3314          * @since BuddyPress (1.0.0)
     3316         * @since 1.0.0
    33153317         *
    33163318         * @param object|bool $group Single group object.
     
    34403442                 * Filters the HTML button for joining a group.
    34413443                 *
    3442                  * @since BuddyPress (1.2.6)
    3443                  * @since BuddyPress (2.4.0) Added $group parameter to filter args.
     3444                 * @since 1.2.6
     3445                 * @since 2.4.0 Added $group parameter to filter args.
    34443446                 *
    34453447                 * @param string $button HTML button for joining a group.
     
    34523454 * Output the Create a Group button.
    34533455 *
    3454  * @since BuddyPress (2.0.0)
     3456 * @since 2.0.0
    34553457 */
    34563458function bp_group_create_button() {
     
    34603462         * Get the Create a Group button.
    34613463         *
    3462          * @since BuddyPress (2.0.0)
     3464         * @since 2.0.0
    34633465         *
    34643466         * @return string
     
    34873489                 * Filters the HTML button for creating a group.
    34883490                 *
    3489                  * @since BuddyPress (2.0.0)
     3491                 * @since 2.0.0
    34903492                 *
    34913493                 * @param string $button HTML button for creating a group.
     
    34973499 * Output the Create a Group nav item.
    34983500 *
    3499  * @since BuddyPress (2.2.0)
     3501 * @since 2.2.0
    35003502 */
    35013503function bp_group_create_nav_item() {
     
    35063508         * Get the Create a Group nav item.
    35073509         *
    3508          * @since BuddyPress (2.2.0)
     3510         * @since 2.2.0
    35093511         *
    35103512         * @return string
     
    35243526                 * Filters the Create a Group nav item.
    35253527                 *
    3526                  * @since BuddyPress (2.2.0)
     3528                 * @since 2.2.0
    35273529                 *
    35283530                 * @param string $output HTML output for nav item.
     
    35353537 * if so, transform the title button into a Groups directory nav item.
    35363538 *
    3537  * @since BuddyPress (2.2.0)
     3539 * @since 2.2.0
    35383540 *
    35393541 * @uses   bp_group_create_nav_item() to output the create a Group nav item.
     
    35593561 * hidden or private group, and the user does not have access).
    35603562 *
    3561  * @since BuddyPress (1.0.0)
     3563 * @since 1.0.0
    35623564 *
    35633565 * @global BP_Groups_Template $groups_template Groups template object.
     
    36113613         * This will be true if it is a hidden or private group, and the user does not have access.
    36123614         *
    3613          * @since BuddyPress (1.6.0)
     3615         * @since 1.6.0
    36143616         *
    36153617         * @param string $message Message to display to the current user.
     
    36243626 * This function is no longer used, but may still be used by older themes.
    36253627 *
    3626  * @since BuddyPress (1.0.0)
     3628 * @since 1.0.0
    36273629 */
    36283630function bp_group_hidden_fields() {
     
    36433645 * Output the total number of groups.
    36443646 *
    3645  * @since BuddyPress (1.0.0)
     3647 * @since 1.0.0
    36463648 */
    36473649function bp_total_group_count() {
     
    36513653         * Return the total number of groups.
    36523654         *
    3653          * @since BuddyPress (1.0.0)
     3655         * @since 1.0.0
    36543656         * @return type
    36553657         */
     
    36593661                 * Filters the total number of groups.
    36603662                 *
    3661                  * @since BuddyPress (1.0.0)
     3663                 * @since 1.0.0
    36623664                 *
    36633665                 * @param int $value Total number of groups found.
     
    36693671 * Output the total number of groups a user belongs to.
    36703672 *
    3671  * @since BuddyPress (1.0.0)
     3673 * @since 1.0.0
    36723674 *
    36733675 * @param int $user_id User ID to get group membership count.
     
    36813683         * Filtered by `bp_core_number_format()` by default
    36823684         *
    3683          * @since BuddyPress (1.0.0)
     3685         * @since 1.0.0
    36843686         *
    36853687         * @param int $user_id User ID to get group membership count.
     
    36933695                 * Filters the total number of groups a user belongs to.
    36943696                 *
    3695                  * @since BuddyPress (1.2.0)
     3697                 * @since 1.2.0
    36963698                 *
    36973699                 * @param int $count   Total number of groups for the user.
     
    38553857                         * Fires right before the rewinding of members list.
    38563858                         *
    3857                          * @since BuddyPress (1.0.0)
    3858                          * @since BuddyPress (2.3.0) `$this` parameter added.
     3859                         * @since 1.0.0
     3860                         * @since 2.3.0 `$this` parameter added.
    38593861                         *
    38603862                         * @param BP_Groups_Group_Members_Template $this Instance of the current Members template.
     
    38803882                         * Fires if the current member item is the first in the members list.
    38813883                         *
    3882                          * @since BuddyPress (1.0.0)
    3883                          * @since BuddyPress (2.3.0) `$this` parameter added.
     3884                         * @since 1.0.0
     3885                         * @since 2.3.0 `$this` parameter added.
    38843886                         *
    38853887                         * @param BP_Groups_Group_Members_Template $this Instance of the current Members template.
     
    39483950         * Filters whether or not a group member query has members to display.
    39493951         *
    3950          * @since BuddyPress (1.1.0)
     3952         * @since 1.1.0
    39513953         *
    39523954         * @param bool                             $value            Whether there are members to display.
     
    39713973 * Output the group member avatar while in the groups members loop.
    39723974 *
    3973  * @since BuddyPress (1.0.0)
     3975 * @since 1.0.0
    39743976 *
    39753977 * @param array|string $args {@see bp_core_fetch_avatar()}
     
    39813983         * Return the group member avatar while in the groups members loop.
    39823984         *
    3983          * @since BuddyPress (1.0.0)
     3985         * @since 1.0.0
    39843986         *
    39853987         * @param array|string $args {@see bp_core_fetch_avatar()}
     
    40004002                 * Filters the group member avatar while in the groups members loop.
    40014003                 *
    4002                  * @since BuddyPress (1.0.0)
     4004                 * @since 1.0.0
    40034005                 *
    40044006                 * @param string $value HTML markup for group member avatar.
     
    40114013 * Output the group member avatar while in the groups members loop.
    40124014 *
    4013  * @since BuddyPress (1.0.0)
     4015 * @since 1.0.0
    40144016 *
    40154017 * @param array|string $args {@see bp_core_fetch_avatar()}
     
    40224024         * Return the group member avatar while in the groups members loop.
    40234025         *
    4024          * @since BuddyPress (1.0.0)
     4026         * @since 1.0.0
    40254027         *
    40264028         * @param array|string $args {@see bp_core_fetch_avatar()}
     
    40414043                 * Filters the group member avatar thumb while in the groups members loop.
    40424044                 *
    4043                  * @since BuddyPress (1.1.0)
     4045                 * @since 1.1.0
    40444046                 *
    40454047                 * @param string $value HTML markup for group member avatar thumb.
     
    40524054 * Output the group member avatar while in the groups members loop.
    40534055 *
    4054  * @since BuddyPress (1.0.0)
     4056 * @since 1.0.0
    40554057 *
    40564058 * @param int $width  Width of avatar to fetch.
     
    40634065         * Output the group member avatar while in the groups members loop.
    40644066         *
    4065          * @since BuddyPress (1.0.0)
     4067         * @since 1.0.0
    40664068         *
    40674069         * @param int $width  Width of avatar to fetch.
     
    40854087                 * Filters the group member avatar mini while in the groups members loop.
    40864088                 *
    4087                  * @since BuddyPress (1.0.0)
     4089                 * @since 1.0.0
    40884090                 *
    40894091                 * @param string $value HTML markup for group member avatar mini.
     
    41024104                 * Filters the group member display name of the current user in the loop.
    41034105                 *
    4104                  * @since BuddyPress (1.0.0)
     4106                 * @since 1.0.0
    41054107                 *
    41064108                 * @param string $display_name Display name of the current user.
     
    41184120                 * Filters the group member url for the current user in the loop.
    41194121                 *
    4120                  * @since BuddyPress (1.0.0)
     4122                 * @since 1.0.0
    41214123                 *
    41224124                 * @param string $value URL for the current user.
     
    41344136                 * Filters the group member HTML link for the current user in the loop.
    41354137                 *
    4136                  * @since BuddyPress (1.0.0)
     4138                 * @since 1.0.0
    41374139                 *
    41384140                 * @param string $value HTML link for the current user.
     
    41504152                 * Filters the group member domain for the current user in the loop.
    41514153                 *
    4152                  * @since BuddyPress (1.2.0)
     4154                 * @since 1.2.0
    41534155                 *
    41544156                 * @param string $value Domain for the current user.
     
    41744176                 * Filters the friendship status between current user and displayed user in group member loop.
    41754177                 *
    4176                  * @since BuddyPress (1.2.0)
     4178                 * @since 1.2.0
    41774179                 *
    41784180                 * @param string $friend_status Current status of the friendship.
     
    41904192                 * Filters whether the member is banned from the current group.
    41914193                 *
    4192                  * @since BuddyPress (1.0.0)
     4194                 * @since 1.0.0
    41934195                 *
    41944196                 * @param bool $is_banned Whether or not the member is banned.
     
    42054207                 * Filters the class to add to the HTML if member is banned.
    42064208                 *
    4207                  * @since BuddyPress (1.2.6)
     4209                 * @since 1.2.6
    42084210                 *
    42094211                 * @param string $value HTML class to add.
     
    42224224                 * Filters the joined since time for the current member in the loop.
    42234225                 *
    4224                  * @since BuddyPress (1.0.0)
     4226                 * @since 1.0.0
    42254227                 *
    42264228                 * @param string $value Joined since time.
     
    42384240                 * Filters the member's user ID for group members loop.
    42394241                 *
    4240                  * @since BuddyPress (1.0.0)
     4242                 * @since 1.0.0
    42414243                 *
    42424244                 * @param int $user_id User ID of the member.
     
    42634265                 * Filters the string to be used as the group pag id.
    42644266                 *
    4265                  * @since BuddyPress (1.0.0)
     4267                 * @since 1.0.0
    42664268                 *
    42674269                 * @param string $value Value to use for the pag id.
     
    42804282                 * Filters the HTML markup to be used for group member listing pagination.
    42814283                 *
    4282                  * @since BuddyPress (1.0.0)
     4284                 * @since 1.0.0
    42834285                 *
    42844286                 * @param string $pag_links HTML markup for the pagination.
     
    43074309                 * Filters the "Viewing x-y of z members" pagination message.
    43084310                 *
    4309                  * @since BuddyPress (1.0.0)
     4311                 * @since 1.0.0
    43104312                 *
    43114313                 * @param string $value    "Viewing x-y of z members" text.
     
    43304332 * Output the Group members template
    43314333 *
    4332  * @since BuddyPress (2.0.0)
     4334 * @since 2.0.0
    43334335 *
    43344336 * @return string html output
     
    43504352                         * Part of bp_groups_members_template_part().
    43514353                         *
    4352                          * @since BuddyPress (1.5.0)
     4354                         * @since 1.5.0
    43534355                         */
    43544356                        do_action( 'bp_members_directory_member_sub_types' ); ?>
     
    43684370 * Output the Group members filters
    43694371 *
    4370  * @since BuddyPress (2.0.0)
     4372 * @since 2.0.0
    43714373 *
    43724374 * @return string html output
     
    43934395                         * Useful for plugins to add more filter options.
    43944396                         *
    4395                          * @since BuddyPress (2.0.0)
     4397                         * @since 2.0.0
    43964398                         */
    43974399                        do_action( 'bp_groups_members_order_options' ); ?>
     
    44094411 * Determine if the current logged in user can create groups.
    44104412 *
    4411  * @since BuddyPress (1.5.0)
     4413 * @since 1.5.0
    44124414 *
    44134415 * @uses apply_filters() To call 'bp_user_can_create_groups'.
     
    44384440         * Filters if the current logged in user can create groups.
    44394441         *
    4440          * @since BuddyPress (1.5.0)
     4442         * @since 1.5.0
    44414443         *
    44424444         * @param bool $can_create Whether the person can create groups.
     
    44724474         * Fires at the end of the creation of the group tabs.
    44734475         *
    4474          * @since BuddyPress (1.0.0)
     4476         * @since 1.0.0
    44754477         */
    44764478        do_action( 'groups_creation_tabs' );
     
    44834485         * Filters the group creation stage title.
    44844486         *
    4485          * @since BuddyPress (1.1.0)
     4487         * @since 1.1.0
    44864488         *
    44874489         * @param string $value HTML markup for the group creation stage title.
     
    45044506                 * Filters the group creation form action.
    45054507                 *
    4506                  * @since BuddyPress (1.1.0)
     4508                 * @since 1.1.0
    45074509                 *
    45084510                 * @param string $value Action to be used with group creation form.
     
    46034605                 * Filters the new group ID.
    46044606                 *
    4605                  * @since BuddyPress (1.1.0)
     4607                 * @since 1.1.0
    46064608                 *
    46074609                 * @param int $new_group_id ID of the new group.
     
    46224624                 * Filters the new group name.
    46234625                 *
    4624                  * @since BuddyPress (1.1.0)
     4626                 * @since 1.1.0
    46254627                 *
    46264628                 * @param string $name Name of the new group.
     
    46414643                 * Filters the new group description.
    46424644                 *
    4643                  * @since BuddyPress (1.1.0)
     4645                 * @since 1.1.0
    46444646                 *
    46454647                 * @param string $name Description of the new group.
     
    46604662                 * Filters whether or not to enable forums for the new group.
    46614663                 *
    4662                  * @since BuddyPress (1.1.0)
     4664                 * @since 1.1.0
    46634665                 *
    46644666                 * @param int $forum Whether or not to enable forums.
     
    46794681                 * Filters the new group status.
    46804682                 *
    4681                  * @since BuddyPress (1.1.0)
     4683                 * @since 1.1.0
    46824684                 *
    46834685                 * @param string $status Status for the new group.
     
    46894691 * Output the avatar for the group currently being created
    46904692 *
    4691  * @since BuddyPress (1.1.0)
     4693 * @since 1.1.0
    46924694 *
    46934695 * @see bp_core_fetch_avatar() For more information on accepted arguments
     
    47014703         * Return the avatar for the group currently being created
    47024704         *
    4703          * @since BuddyPress (1.1.0)
     4705         * @since 1.1.0
    47044706         *
    47054707         * @see bp_core_fetch_avatar() For a description of arguments and return values.
     
    47444746                 * Filters the new group avatar.
    47454747                 *
    4746                  * @since BuddyPress (1.1.0)
     4748                 * @since 1.1.0
    47474749                 *
    47484750                 * @param string $avatar HTML markup for the new group avatar.
     
    47564758 * Escape & output the URL to the previous group creation step
    47574759 *
    4758  * @since BuddyPress (1.1.0)
     4760 * @since 1.1.0
    47594761 */
    47604762function bp_group_creation_previous_link() {
     
    47644766         * Return the URL to the previous group creation step
    47654767         *
    4766          * @since BuddyPress (1.1.0)
     4768         * @since 1.1.0
    47674769         *
    47684770         * @return string
     
    47934795                 * Filters the permalink for the previous step with the group creation process.
    47944796                 *
    4795                  * @since BuddyPress (1.1.0)
     4797                 * @since 1.1.0
    47964798                 *
    47974799                 * @param string $url Permalink for the previous step.
     
    48034805 * Echoes the current group creation step.
    48044806 *
    4805  * @since BuddyPress (1.6.0)
     4807 * @since 1.6.0
    48064808 */
    48074809function bp_groups_current_create_step() {
     
    48114813         * Returns the current group creation step. If none is found, returns an empty string.
    48124814         *
    4813          * @since BuddyPress (1.6.0)
     4815         * @since 1.6.0
    48144816         *
    48154817         * @uses apply_filters() Filter bp_get_groups_current_create_step to modify.
     
    48314833                 * If none is found, returns an empty string.
    48324834                 *
    4833                  * @since BuddyPress (1.6.0)
     4835                 * @since 1.6.0
    48344836                 *
    48354837                 * @param string $current_create_step Current step in the group creation process.
     
    48414843 * Is the user looking at the last step in the group creation process.
    48424844 *
    4843  * @since BuddyPress (1.1.0)
     4845 * @since 1.1.0
    48444846 *
    48454847 * @param  string $step Step to compare
     
    48644866         * Filters whether or not user is looking at last step in group creation process.
    48654867         *
    4866          * @since BuddyPress (2.4.0)
     4868         * @since 2.4.0
    48674869         *
    48684870         * @param bool   $retval Whether or not we are looking at last step.
     
    48764878 * Is the user looking at the first step in the group creation process
    48774879 *
    4878  * @since BuddyPress (1.1.0)
     4880 * @since 1.1.0
    48794881 *
    48804882 * @param  string $step Step to compare
     
    48994901         * Filters whether or not user is looking at first step in group creation process.
    49004902         *
    4901          * @since BuddyPress (2.4.0)
     4903         * @since 2.4.0
    49024904         *
    49034905         * @param bool   $retval Whether or not we are looking at first step.
     
    49114913 * Output a list of friends who can be invited to a group
    49124914 *
    4913  * @since BuddyPress (1.0.0)
     4915 * @since 1.0.0
    49144916 */
    49154917function bp_new_group_invite_friend_list( $args = array() ) {
     
    49194921         * Return a list of friends who can be invited to a group
    49204922         *
    4921          * @since BuddyPress (1.0.0)
     4923         * @since 1.0.0
    49224924         *
    49234925         * @param  array $args
     
    49664968                 * Filters the array of friends who can be invited to a group.
    49674969                 *
    4968                  * @since BuddyPress (1.0.0)
     4970                 * @since 1.0.0
    49694971                 *
    49704972                 * @param array $items Array of friends.
     
    49995001         * Filters the HTML markup for the groups search form.
    50005002         *
    5001          * @since BuddyPress (1.9.0)
     5003         * @since 1.9.0
    50025004         *
    50035005         * @param string $search_form_html HTML markup for the search form.
     
    50605062 * Is the current page a specific group admin screen?
    50615063 *
    5062  * @since BuddyPress (1.1.0)
     5064 * @since 1.1.0
    50635065 *
    50645066 * @param string $slug
     
    50735075 * Echoes the current group admin tab slug.
    50745076 *
    5075  * @since BuddyPress (1.6.0)
     5077 * @since 1.6.0
    50765078 */
    50775079function bp_group_current_admin_tab() {
     
    50815083         * Returns the current group admin tab slug.
    50825084         *
    5083          * @since BuddyPress (1.6.0)
     5085         * @since 1.6.0
    50845086         *
    50855087         * @uses apply_filters() Filter bp_get_current_group_admin_tab to modify return value.
     
    50975099                 * Filters the current group admin tab slug.
    50985100                 *
    5099                  * @since BuddyPress (1.6.0)
     5101                 * @since 1.6.0
    51005102                 *
    51015103                 * @param string $tab Current group admin tab slug.
     
    51095111 * Outputs the current group avatar.
    51105112 *
    5111  * @since BuddyPress (1.0.0)
     5113 * @since 1.0.0
    51125114 * @param string $type thumb or full ?
    51135115 * @uses bp_get_group_current_avatar() to get the avatar of the current group.
     
    51195121         * Returns the current group avatar.
    51205122         *
    5121          * @since BuddyPress (2.0.0)
     5123         * @since 2.0.0
    51225124         *
    51235125         * @param string $type thumb or full ?
     
    51385140                 * Filters the current group avatar.
    51395141                 *
    5140                  * @since BuddyPress (2.0.0)
     5142                 * @since 2.0.0
    51415143                 *
    51425144                 * @param string $group_avatar HTML markup for current group avatar.
     
    51485150 * Return whether a group has an avatar.
    51495151 *
    5150  * @since BuddyPress (1.1.0)
     5152 * @since 1.1.0
    51515153 *
    51525154 * @param  int|bool $group_id
     
    51835185                 * Filters the URL to delete the group avatar.
    51845186                 *
    5185                  * @since BuddyPress (1.1.0)
     5187                 * @since 1.1.0
    51865188                 *
    51875189                 * @param string $value URL to delete the group avatar.
     
    53485350                         * Fires right before the rewinding of group membership requests list.
    53495351                         *
    5350                          * @since BuddyPress (1.5.0)
     5352                         * @since 1.5.0
    53515353                         */
    53525354                        do_action( 'group_request_loop_end' );
     
    53695371                         * Fires if the current group membership request item is the first in the loop.
    53705372                         *
    5371                          * @since BuddyPress (1.1.0)
     5373                         * @since 1.1.0
    53725374                         */
    53735375                        do_action( 'group_request_loop_start' );
     
    54045406         * Filters whether or not a group membership query has requests to display.
    54055407         *
    5406          * @since BuddyPress (1.1.0)
     5408         * @since 1.1.0
    54075409         *
    54085410         * @param bool                                   $value             Whether there are requests to display.
     
    54305432         * Filters the requesting user's avatar thumbnail.
    54315433         *
    5432          * @since BuddyPress (1.0.0)
     5434         * @since 1.0.0
    54335435         *
    54345436         * @param string $value HTML markup for the user's avatar thumbnail.
     
    54465448                 * Filters the URL to use to reject a membership request.
    54475449                 *
    5448                  * @since BuddyPress (1.2.6)
     5450                 * @since 1.2.6
    54495451                 *
    54505452                 * @param string $value URL to use to reject a membership request.
     
    54625464                 * Filters the URL to use to accept a membership request.
    54635465                 *
    5464                  * @since BuddyPress (1.2.6)
     5466                 * @since 1.2.6
    54655467                 *
    54665468                 * @param string $value URL to use to accept a membership request.
     
    54785480                 * Filters the URL for the user requesting membership.
    54795481                 *
    5480                  * @since BuddyPress (1.2.6)
     5482                 * @since 1.2.6
    54815483                 *
    54825484                 * @param string $value URL for the user requestion membership.
     
    54915493         * Filters the formatted time since membership was requested.
    54925494         *
    5493          * @since BuddyPress (1.0.0)
     5495         * @since 1.0.0
    54945496         *
    54955497         * @param string $value Formatted time since membership was requested.
     
    55045506         * Filters the membership request comment left by user.
    55055507         *
    5506          * @since BuddyPress (1.0.0)
     5508         * @since 1.0.0
    55075509         *
    55085510         * @param string $value Membership request comment left by user.
     
    55145516 * Output pagination links for group membership requests.
    55155517 *
    5516  * @since BuddyPress (2.0.0)
     5518 * @since 2.0.0
    55175519 */
    55185520function bp_group_requests_pagination_links() {
     
    55225524         * Get pagination links for group membership requests.
    55235525         *
    5524          * @since BuddyPress (2.0.0)
     5526         * @since 2.0.0
    55255527         *
    55265528         * @return string
     
    55325534                 * Filters pagination links for group membership requests.
    55335535                 *
    5534                  * @since BuddyPress (2.0.0)
     5536                 * @since 2.0.0
    55355537                 *
    55365538                 * @param string $value Pagination links for group membership requests.
     
    55425544 * Output pagination count text for group membership requests.
    55435545 *
    5544  * @since BuddyPress (2.0.0)
     5546 * @since 2.0.0
    55455547 */
    55465548function bp_group_requests_pagination_count() {
     
    55505552         * Get pagination count text for group membership requests.
    55515553         *
    5552          * @since BuddyPress (2.0.0)
     5554         * @since 2.0.0
    55535555         *
    55545556         * @return string
     
    55715573                 * Filters pagination count text for group membership requests.
    55725574                 *
    5573                  * @since BuddyPress (2.0.0)
     5575                 * @since 2.0.0
    55745576                 *
    55755577                 * @param string $message  Pagination count text for group membership requests.
     
    56885690                         * Fires right before the rewinding of invites list.
    56895691                         *
    5690                          * @since BuddyPress (1.1.0)
    5691                          * @since BuddyPress (2.3.0) `$this` parameter added.
     5692                         * @since 1.1.0
     5693                         * @since 2.3.0 `$this` parameter added.
    56925694                         *
    56935695                         * @param BP_Groups_Invite_Template $this Instance of the current Invites template.
     
    57475749                         * Fires if the current invite item is the first in the loop.
    57485750                         *
    5749                          * @since BuddyPress (1.1.0)
    5750                          * @since BuddyPress (2.3.0) `$this` parameter added.
     5751                         * @since 1.1.0
     5752                         * @since 2.3.0 `$this` parameter added.
    57515753                         *
    57525754                         * @param BP_Groups_Invite_Template $this Instance of the current Invites template.
     
    57895791         * Filters whether or not a group invites query has invites to display.
    57905792         *
    5791          * @since BuddyPress (1.1.0)
     5793         * @since 1.1.0
    57925794         *
    57935795         * @param bool                      $value            Whether there are requests to display.
     
    58185820                 * Filters the group invite item ID.
    58195821                 *
    5820                  * @since BuddyPress (1.1.0)
     5822                 * @since 1.1.0
    58215823                 *
    58225824                 * @param string $value Group invite item ID.
     
    58345836                 * Filters the group invite user avatar.
    58355837                 *
    5836                  * @since BuddyPress (1.1.0)
     5838                 * @since 1.1.0
    58375839                 *
    58385840                 * @param string $value Group invite user avatar.
     
    58505852                 * Filters the group invite user link.
    58515853                 *
    5852                  * @since BuddyPress (1.1.0)
     5854                 * @since 1.1.0
    58535855                 *
    58545856                 * @param string $value Group invite user link.
     
    58665868                 * Filters the group invite user's last active time.
    58675869                 *
    5868                  * @since BuddyPress (1.1.0)
     5870                 * @since 1.1.0
    58695871                 *
    58705872                 * @param string $value Group invite user's last active time.
     
    58935895 * Output pagination links for group invitations.
    58945896 *
    5895  * @since BuddyPress (2.0.0)
     5897 * @since 2.0.0
    58965898 */
    58975899function bp_group_invite_pagination_links() {
     
    59015903         * Get pagination links for group invitations.
    59025904         *
    5903          * @since BuddyPress (2.0.0)
     5905         * @since 2.0.0
    59045906         *
    59055907         * @return string
     
    59115913                 * Filters the pagination links for group invitations.
    59125914                 *
    5913                  * @since BuddyPress (2.0.0)
     5915                 * @since 2.0.0
    59145916                 *
    59155917                 * @param string $value Pagination links for group invitations.
     
    59215923 * Output pagination count text for group invitations.
    59225924 *
    5923  * @since BuddyPress (2.0.0)
     5925 * @since 2.0.0
    59245926 */
    59255927function bp_group_invite_pagination_count() {
     
    59295931         * Get pagination count text for group invitations.
    59305932         *
    5931          * @since BuddyPress (2.0.0)
     5933         * @since 2.0.0
    59325934         *
    59335935         * @return string
     
    59565958 * Hook group activity feed to <head>.
    59575959 *
    5958  * @since BuddyPress (1.5.0)
     5960 * @since 1.5.0
    59595961 */
    59605962function bp_groups_activity_feed() {
     
    59745976 * Output the current group activity-stream RSS URL.
    59755977 *
    5976  * @since BuddyPress (1.5.0)
     5978 * @since 1.5.0
    59775979 */
    59785980function bp_group_activity_feed_link() {
     
    59825984         * Return the current group activity-stream RSS URL.
    59835985         *
    5984          * @since BuddyPress (1.5.0)
     5986         * @since 1.5.0
    59855987         * @return string
    59865988         */
     
    59935995                 * Filters the current group activity-stream RSS URL.
    59945996                 *
    5995                  * @since BuddyPress (1.2.0)
     5997                 * @since 1.2.0
    59965998                 *
    59975999                 * @param string $feed_link Current group activity-stream RSS URL.
     
    60056007 * Echoes the output of bp_get_current_group_id().
    60066008 *
    6007  * @since BuddyPress (1.5.0)
     6009 * @since 1.5.0
    60086010 */
    60096011function bp_current_group_id() {
     
    60136015         * Returns the ID of the current group.
    60146016         *
    6015          * @since BuddyPress (1.5.0)
     6017         * @since 1.5.0
    60166018         * @uses apply_filters() Filter bp_get_current_group_id to modify this output.
    60176019         *
     
    60256027                 * Filters the ID of the current group.
    60266028                 *
    6027                  * @since BuddyPress (1.5.0)
     6029                 * @since 1.5.0
    60286030                 *
    60296031                 * @param int    $current_group_id ID of the current group.
     
    60366038 * Echoes the output of bp_get_current_group_slug().
    60376039 *
    6038  * @since BuddyPress (1.5.0)
     6040 * @since 1.5.0
    60396041 */
    60406042function bp_current_group_slug() {
     
    60446046         * Returns the slug of the current group.
    60456047         *
    6046          * @since BuddyPress (1.5.0)
     6048         * @since 1.5.0
    60476049         * @uses apply_filters() Filter bp_get_current_group_slug to modify this output.
    60486050         *
     
    60566058                 * Filters the slug of the current group.
    60576059                 *
    6058                  * @since BuddyPress (1.5.0)
     6060                 * @since 1.5.0
    60596061                 *
    60606062                 * @param string $current_group_slug Slug of the current group.
     
    60676069 * Echoes the output of bp_get_current_group_name().
    60686070 *
    6069  * @since BuddyPress (1.5.0)
     6071 * @since 1.5.0
    60706072 */
    60716073function bp_current_group_name() {
     
    60756077         * Returns the name of the current group.
    60766078         *
    6077          * @since BuddyPress (1.5.0)
     6079         * @since 1.5.0
    60786080         * @uses apply_filters() Filter bp_get_current_group_name to modify this output.
    60796081         *
     
    60906092                 * Filters the name of the current group.
    60916093                 *
    6092                  * @since BuddyPress (1.2.0)
     6094                 * @since 1.2.0
    60936095                 *
    60946096                 * @param string $name          Name of the current group.
     
    61016103 * Echoes the output of bp_get_current_group_description().
    61026104 *
    6103  * @since BuddyPress (2.1.0)
     6105 * @since 2.1.0
    61046106 */
    61056107function bp_current_group_description() {
     
    61096111         * Returns the description of the current group.
    61106112         *
    6111          * @since BuddyPress (2.1.0)
     6113         * @since 2.1.0
    61126114         * @uses apply_filters() Filter bp_get_current_group_description to modify
    61136115         *                       this output.
     
    61246126                 * This filter is used to apply extra filters related to formatting.
    61256127                 *
    6126                  * @since BuddyPress (1.0.0)
     6128                 * @since 1.0.0
    61276129                 *
    61286130                 * @param string $current_group_desc Description of the current group.
     
    61336135                 * Filters the description of the current group.
    61346136                 *
    6135                  * @since BuddyPress (2.1.0)
     6137                 * @since 2.1.0
    61366138                 *
    61376139                 * @param string $desc Description of the current group.
     
    61436145 * Output a URL for a group component action.
    61446146 *
    6145  * @since BuddyPress (1.2.0)
     6147 * @since 1.2.0
    61466148 *
    61476149 * @param string $action
     
    61576159         * Get a URL for a group component action.
    61586160         *
    6159          * @since BuddyPress (1.2.0)
     6161         * @since 1.2.0
    61606162         *
    61616163         * @param string $action
     
    61996201                 * Filters a URL for a group component action.
    62006202                 *
    6201                  * @since BuddyPress (2.1.0)
     6203                 * @since 2.1.0
    62026204                 *
    62036205                 * @param string $url        URL for a group component action.
     
    62146216 * Display the number of groups in user's profile.
    62156217 *
    6216  * @since BuddyPress (2.0.0)
     6218 * @since 2.0.0
    62176219 *
    62186220 * @param array|string $args before|after|user_id
     
    62286230 * Return the number of groups in user's profile.
    62296231 *
    6230  * @since BuddyPress (2.0.0)
     6232 * @since 2.0.0
    62316233 *
    62326234 * @param array|string $args before|after|user_id
     
    62636265         * Filters the number of groups in user's profile.
    62646266         *
    6265          * @since BuddyPress (2.0.0)
     6267         * @since 2.0.0
    62666268         *
    62676269         * @param string $value HTML for stats output.
Note: See TracChangeset for help on using the changeset viewer.