Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/21/2012 03:47:05 PM (12 years ago)
Author:
djpaul
Message:

Add missing field declarations to classes. Fixes #4159

File:
1 edited

Legend:

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

    r5974 r5999  
    2424    var $mods;
    2525    var $total_member_count;
     26
     27    /**
     28     * Is the current user a member of this group?
     29     *
     30     * @since BuddyPress (1.2)
     31     * @var bool
     32     */
     33    public $is_member;
     34
     35    /**
     36     * Timestamp of the last activity that happened in this group.
     37     *
     38     * @since BuddyPress (1.2)
     39     * @var string
     40     */
     41    public $last_activity;
     42
     43    /**
     44     * If this is a private or hidden group, does the current user have access?
     45     *
     46     * @since BuddyPress (1.6)
     47     * @var bool
     48     */
     49    public $user_has_access;
    2650
    2751    public function __construct( $id = null ) {
Note: See TracChangeset for help on using the changeset viewer.