Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/24/2015 11:55:02 PM (9 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Notifications component.

See #6576

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-notifications/bp-notifications-cache.php

    r9993 r10138  
    11<?php
    2 
    32/**
    43 * Functions related to notifications caching.
    54 *
    6  * @since BuddyPress (2.0.0)
     5 * @since 2.0.0
     6 *
     7 * @package BuddyPress
     8 * @subpackage NotificationsCache
    79 */
     10
     11// Exit if accessed directly.
     12defined( 'ABSPATH' ) || exit;
    813
    914/**
     
    1419 * when using notification meta within a loop context.
    1520 *
    16  * @since BuddyPress (2.3.0)
     21 * @since 2.3.0
    1722 *
    1823 * @param int|string|array|bool $notification_ids Accepts a single notification_id, or a
     
    3439 * Clear all notifications cache for a given user ID.
    3540 *
    36  * @since BuddyPress (2.3.0)
     41 * @since 2.3.0
    3742 *
    3843 * @param int $user_id The user ID's cache to clear.
     
    4550 * Invalidate 'all_for_user_' cache when saving.
    4651 *
    47  * @since BuddyPress (2.0.0)
     52 * @since 2.0.0
    4853 *
    4954 * @param BP_Notifications_Notification $n Notification object.
     
    5762 * Invalidate the 'all_for_user_' cache when deleting.
    5863 *
    59  * @since BuddyPress (2.0.0)
     64 * @since 2.0.0
    6065 *
    6166 * @param int $args Notification deletion arguments.
     
    8186 * Invalidates 'all_for_user_' cache when updating.
    8287 *
    83  * @since BuddyPress (2.3.0)
     88 * @since 2.3.0
    8489 *
    8590 * @param array $update_args See BP_Notifications_Notification::update() for description.
Note: See TracChangeset for help on using the changeset viewer.