Changeset 7553
- Timestamp:
- 11/09/2013 10:27:13 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-notifications/bp-notifications-template.php
r7549 r7553 100 100 */ 101 101 class BP_Notifications_Template { 102 102 103 /** 103 104 * The loop iterator. … … 107 108 * @var int 108 109 */ 109 var$current_notification = -1;110 public $current_notification = -1; 110 111 111 112 /** … … 116 117 * @var int 117 118 */ 118 var$current_notification_count;119 public $current_notification_count; 119 120 120 121 /** … … 125 126 * @var int 126 127 */ 127 var$total_notification_count;128 public $total_notification_count; 128 129 129 130 /** … … 134 135 * @var array 135 136 */ 136 var$notifications;137 public $notifications; 137 138 138 139 /** … … 143 144 * @var object 144 145 */ 145 var$notification;146 public $notification; 146 147 147 148 /** … … 152 153 * @var bool 153 154 */ 154 var$in_the_loop;155 public $in_the_loop; 155 156 156 157 /** … … 161 162 * @var int 162 163 */ 163 var$user_id;164 public $user_id; 164 165 165 166 /** … … 170 171 * @var int 171 172 */ 172 var$pag_page;173 public $pag_page; 173 174 174 175 /** … … 179 180 * @var int 180 181 */ 181 var$pag_num;182 public $pag_num; 182 183 183 184 /** … … 188 189 * @var string 189 190 */ 190 var$pag_links;191 public $pag_links; 191 192 192 193 /** … … 197 198 * @var string 198 199 */ 199 var $search_terms; 200 public $search_terms; 201 202 /** 203 * A database column to order the results by. 204 * 205 * @since BuddyPress (1.9.0) 206 * @access public 207 * @var string 208 */ 209 public $order_by; 210 211 /** 212 * The direction to sort the results (ASC or DESC) 213 * 214 * @since BuddyPress (1.9.0) 215 * @access public 216 * @var string 217 */ 218 public $sort_order; 200 219 201 220 /**
Note: See TracChangeset
for help on using the changeset viewer.