Changeset 9522
- Timestamp:
- 02/21/2015 10:27:32 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-template.php
r9515 r9522 115 115 */ 116 116 class BP_Activity_Template { 117 118 119 120 121 122 123 117 /** 118 * The loop iterator. 119 * 120 * @since BuddyPress (1.5.0) 121 * @access public 122 * @var int 123 */ 124 124 public $current_activity = -1; 125 126 127 128 129 130 131 132 125 126 /** 127 * The activity count. 128 * 129 * @since BuddyPress (1.5.0) 130 * @access public 131 * @var int 132 */ 133 133 public $activity_count; 134 135 136 137 138 139 140 141 134 135 /** 136 * The total activity count. 137 * 138 * @since BuddyPress (1.5.0) 139 * @access public 140 * @var int 141 */ 142 142 public $total_activity_count; 143 144 145 146 147 148 149 150 143 144 /** 145 * Array of activities located by the query. 146 * 147 * @since BuddyPress (1.5.0) 148 * @access public 149 * @var array 150 */ 151 151 public $activities; 152 153 154 155 156 157 158 159 152 153 /** 154 * The activity object currently being iterated on. 155 * 156 * @since BuddyPress (1.5.0) 157 * @access public 158 * @var object 159 */ 160 160 public $activity; 161 161 162 163 164 165 166 167 168 162 /** 163 * A flag for whether the loop is currently being iterated. 164 * 165 * @since BuddyPress (1.5.0) 166 * @access public 167 * @var bool 168 */ 169 169 public $in_the_loop; 170 170 … … 177 177 public $pag_arg; 178 178 179 180 181 182 183 184 185 179 /** 180 * The page number being requested. 181 * 182 * @since BuddyPress (1.5.0) 183 * @access public 184 * @var int 185 */ 186 186 public $pag_page; 187 188 189 190 191 192 193 194 187 188 /** 189 * The number of items being requested per page. 190 * 191 * @since BuddyPress (1.5.0) 192 * @access public 193 * @var int 194 */ 195 195 public $pag_num; 196 197 198 199 200 201 202 203 196 197 /** 198 * An HTML string containing pagination links. 199 * 200 * @since BuddyPress (1.5.0) 201 * @access public 202 * @var string 203 */ 204 204 public $pag_links; 205 205 206 207 208 209 210 211 212 206 /** 207 * The displayed user's full name. 208 * 209 * @since BuddyPress (1.5.0) 210 * @access public 211 * @var string 212 */ 213 213 public $full_name; 214 214
Note: See TracChangeset
for help on using the changeset viewer.