Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/18/2016 07:34:34 AM (9 years ago)
Author:
tw2113
Message:

More docs cleanup and @since additions.

See #6396.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/classes/class-bp-activity-feed.php

    r10417 r10455  
    4444     *
    4545     * @see BP_Feed::__construct() This is where $data is added.
     46     *
     47     * @since 1.8.0
    4648     * @var array
    4749     */
     
    5153     * Magic method for checking the existence of a certain data variable.
    5254     *
     55     * @since 1.8.0
     56     *
    5357     * @param string $key Property to check.
    54      *
    5558     * @return bool Whether or not data variable exists.
    5659     */
     
    6063     * Magic method for getting a certain data variable.
    6164     *
     65     * @since 1.8.0
     66     *
    6267     * @param string $key Property to get.
    63      *
    6468     * @return mixed Data in variable if available or null.
    6569     */
     
    7882    /**
    7983     * Constructor.
     84     *
     85     * @since 1.8.0
    8086     *
    8187     * @param array $args Optional.
     
    176182    /**
    177183     * Setup and validate the class properties.
     184     *
     185     * @since 1.8.0
    178186     */
    179187    protected function setup_properties() {
     
    199207     * Currently, these hooks are used to maintain backwards compatibility with
    200208     * the RSS feeds previous to BP 1.8.
     209     *
     210     * @since 1.8.0
    201211     */
    202212    protected function setup_hooks() {
     
    210220    /**
    211221     * Fire a hook to ensure backward compatibility for RSS attributes.
     222     *
     223     * @since 1.8.0
    212224     */
    213225    public function backpat_rss_attributes() {
     
    225237    /**
    226238     * Fire a hook to ensure backward compatibility for channel elements.
     239     *
     240     * @since 1.8.0
    227241     */
    228242    public function backpat_channel_elements() {
     
    240254    /**
    241255     * Fire a hook to ensure backward compatibility for item elements.
     256     *
     257     * @since 1.8.0
    242258     */
    243259    public function backpat_item_elements() {
     
    271287    /**
    272288     * Output the feed's item content.
     289     *
     290     * @since 1.8.0
    273291     */
    274292    protected function feed_content() {
     
    374392    /**
    375393     * Output the RSS feed.
     394     *
     395     * @since 1.8.0
    376396     */
    377397    protected function output() {
Note: See TracChangeset for help on using the changeset viewer.