Changeset 6440 for trunk/wp-includes/atomlib.php
- Timestamp:
- 12/20/2007 10:28:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/atomlib.php
r6118 r6440 1 1 <?php 2 2 /* 3 * atomlib.php - Atom Syndication Format PHP Library 4 * 5 * Project: http://code.google.com/p/phpatomlib/ 6 * 7 * Author: Elias Torres <elias@torrez.us> 8 * Version: 0.4 9 * 3 * Atom Syndication Format PHP Library 4 * 5 * @package AtomLib 6 * @link http://code.google.com/p/phpatomlib/ 7 * 8 * @author: Elias Torres <elias@torrez.us> 9 * @version: 0.4 10 * @since 2.3 10 11 */ 11 12 13 /** 14 * Structure that store common Atom Feed Properties 15 * 16 * @package AtomLib 17 */ 12 18 class AtomFeed { 19 /** 20 * Stores Links 21 * @var array 22 * @access public 23 */ 13 24 var $links = array(); 25 /** 26 * Stores Categories 27 * @var array 28 * @access public 29 */ 14 30 var $categories = array(); 15 31 /** 32 * Stores Entries 33 * 34 * @var array 35 * @access public 36 */ 16 37 var $entries = array(); 17 38 } 18 39 40 /** 41 * Structure that store Atom Entry Properties 42 * 43 * @package AtomLib 44 */ 19 45 class AtomEntry { 46 /** 47 * Stores Links 48 * @var array 49 * @access public 50 */ 20 51 var $links = array(); 52 /** 53 * Stores Categories 54 * @var array 55 * @access public 56 */ 21 57 var $categories = array(); 22 58 } 23 59 60 /** 61 * AtomLib Atom Parser API 62 * 63 * @package AtomLib 64 */ 24 65 class AtomParser { 25 66
Note: See TracChangeset
for help on using the changeset viewer.