Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/18/2012 10:15:09 AM (12 years ago)
Author:
djpaul
Message:

Update @since phpdoc on functions to use our formatted version of the tag, e.g. "@since BuddyPress (1.6)". Fixes #4445, props fanquake

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-groups/bp-groups-forums.php

    r6240 r6259  
    2424 * @param string $group_description The group description
    2525 *
    26  * @since 1.0
     26 * @since BuddyPress (1.0)
    2727 */
    2828function groups_new_group_forum( $group_id = 0, $group_name = '', $group_desc = '' ) {
     
    5353 * @param int $group_id Group id, passed from groups_details_updated
    5454 *
    55  * @since 1.1
     55 * @since BuddyPress (1.1)
    5656 */
    5757function groups_update_group_forum( $group_id ) {
     
    9090 * @return mixed The new forum post ID on success. Boolean false on failure.
    9191 *
    92  * @since 1.0
     92 * @since BuddyPress (1.0)
    9393 */
    9494function groups_new_group_forum_post( $post_text, $topic_id, $page = false ) {
     
    138138 * @return mixed The new topic object on success. Boolean false on failure.
    139139 *
    140  * @since 1.0
     140 * @since BuddyPress (1.0)
    141141 */
    142142function groups_new_group_forum_topic( $topic_title, $topic_text, $topic_tags, $forum_id ) {
     
    184184 * @return mixed The topic object on success. Boolean false on failure.
    185185 *
    186  * @since 1.1
     186 * @since BuddyPress (1.1)
    187187 */
    188188function groups_update_group_forum_topic( $topic_id, $topic_title, $topic_text, $topic_tags = false ) {
     
    239239 * @return mixed The forum post ID on success. Boolean false on failure.
    240240 *
    241  * @since 1.1
     241 * @since BuddyPress (1.1)
    242242 */
    243243function groups_update_group_forum_post( $post_id, $post_text, $topic_id, $page = false ) {
     
    303303 * @return bool True if the delete routine went through properly
    304304 *
    305  * @since 1.1
     305 * @since BuddyPress (1.1)
    306306 */
    307307function groups_delete_group_forum_topic( $topic_id ) {
     
    355355 * @return bool True on success.
    356356 *
    357  * @since 1.1
     357 * @since BuddyPress (1.1)
    358358 */
    359359function groups_delete_group_forum_post( $post_id, $topic_id = false ) {
     
    384384 *
    385385 * @package BuddyPress
    386  * @since 1.5
     386 * @since BuddyPress (1.5)
    387387 *
    388388 * @param string $type Either 'newest', 'popular', 'unreplied', 'tags'.  Defaults to 'newest'.
     
    397397 *
    398398 * @package BuddyPress
    399  * @since 1.5
     399 * @since BuddyPress (1.5)
    400400 *
    401401 * @param str $status 'public', 'private', 'hidden', 'all' Which group types to count
Note: See TracChangeset for help on using the changeset viewer.