- Timestamp:
- 01/18/2016 07:34:34 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/classes/class-bp-activity-feed.php
r10417 r10455 44 44 * 45 45 * @see BP_Feed::__construct() This is where $data is added. 46 * 47 * @since 1.8.0 46 48 * @var array 47 49 */ … … 51 53 * Magic method for checking the existence of a certain data variable. 52 54 * 55 * @since 1.8.0 56 * 53 57 * @param string $key Property to check. 54 *55 58 * @return bool Whether or not data variable exists. 56 59 */ … … 60 63 * Magic method for getting a certain data variable. 61 64 * 65 * @since 1.8.0 66 * 62 67 * @param string $key Property to get. 63 *64 68 * @return mixed Data in variable if available or null. 65 69 */ … … 78 82 /** 79 83 * Constructor. 84 * 85 * @since 1.8.0 80 86 * 81 87 * @param array $args Optional. … … 176 182 /** 177 183 * Setup and validate the class properties. 184 * 185 * @since 1.8.0 178 186 */ 179 187 protected function setup_properties() { … … 199 207 * Currently, these hooks are used to maintain backwards compatibility with 200 208 * the RSS feeds previous to BP 1.8. 209 * 210 * @since 1.8.0 201 211 */ 202 212 protected function setup_hooks() { … … 210 220 /** 211 221 * Fire a hook to ensure backward compatibility for RSS attributes. 222 * 223 * @since 1.8.0 212 224 */ 213 225 public function backpat_rss_attributes() { … … 225 237 /** 226 238 * Fire a hook to ensure backward compatibility for channel elements. 239 * 240 * @since 1.8.0 227 241 */ 228 242 public function backpat_channel_elements() { … … 240 254 /** 241 255 * Fire a hook to ensure backward compatibility for item elements. 256 * 257 * @since 1.8.0 242 258 */ 243 259 public function backpat_item_elements() { … … 271 287 /** 272 288 * Output the feed's item content. 289 * 290 * @since 1.8.0 273 291 */ 274 292 protected function feed_content() { … … 374 392 /** 375 393 * Output the RSS feed. 394 * 395 * @since 1.8.0 376 396 */ 377 397 protected function output() {
Note: See TracChangeset
for help on using the changeset viewer.