Changeset 10013
- Timestamp:
- 07/15/2015 06:41:16 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/bp-xprofile-template.php
r9936 r10013 20 20 class BP_XProfile_Data_Template { 21 21 22 23 24 25 26 27 28 22 /** 23 * The loop iterator. 24 * 25 * @since BuddyPress (1.5.0) 26 * @access public 27 * @var int 28 */ 29 29 public $current_group = -1; 30 30 31 32 33 34 35 36 37 31 /** 32 * The number of groups returned by the paged query. 33 * 34 * @since BuddyPress (1.5.0) 35 * @access public 36 * @var int 37 */ 38 38 public $group_count; 39 39 40 41 42 43 44 45 46 40 /** 41 * Array of groups located by the query. 42 * 43 * @since BuddyPress (1.5.0) 44 * @access public 45 * @var array 46 */ 47 47 public $groups; 48 48 49 50 51 52 53 54 55 49 /** 50 * The group object currently being iterated on. 51 * 52 * @since BuddyPress (1.5.0) 53 * @access public 54 * @var object 55 */ 56 56 public $group; 57 57 58 59 60 61 62 63 64 58 /** 59 * The current field. 60 * 61 * @since BuddyPress (1.5.0) 62 * @access public 63 * @var int 64 */ 65 65 public $current_field = -1; 66 66 67 68 69 70 71 72 73 67 /** 68 * The field count. 69 * 70 * @since BuddyPress (1.5.0) 71 * @access public 72 * @var int 73 */ 74 74 public $field_count; 75 75 76 77 78 79 80 81 82 76 /** 77 * Field has data. 78 * 79 * @since BuddyPress (1.5.0) 80 * @access public 81 * @var bool 82 */ 83 83 public $field_has_data; 84 84 85 86 87 88 89 90 91 85 /** 86 * The field. 87 * 88 * @since BuddyPress (1.5.0) 89 * @access public 90 * @var int 91 */ 92 92 public $field; 93 93 94 95 96 97 98 99 100 94 /** 95 * A flag for whether the loop is currently being iterated. 96 * 97 * @since BuddyPress (1.5.0) 98 * @access public 99 * @var bool 100 */ 101 101 public $in_the_loop; 102 102 103 104 105 106 107 108 109 103 /** 104 * The user ID. 105 * 106 * @since BuddyPress (1.5.0) 107 * @access public 108 * @var int 109 */ 110 110 public $user_id; 111 111
Note: See TracChangeset
for help on using the changeset viewer.