From 7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 4 Apr 2008 16:44:15 +0000 Subject: Merged with WordPress 2.5, unstable, only for testing git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1218 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/atomlib.php | 53 +++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 47 insertions(+), 6 deletions(-) (limited to 'wp-includes/atomlib.php') diff --git a/wp-includes/atomlib.php b/wp-includes/atomlib.php index a518908..9c2335c 100644 --- a/wp-includes/atomlib.php +++ b/wp-includes/atomlib.php @@ -1,26 +1,67 @@ - * Version: 0.4 + * @package AtomLib + * @link http://code.google.com/p/phpatomlib/ * + * @author: Elias Torres + * @version: 0.4 + * @since 2.3 */ +/** + * Structure that store common Atom Feed Properties + * + * @package AtomLib + */ class AtomFeed { + /** + * Stores Links + * @var array + * @access public + */ var $links = array(); + /** + * Stores Categories + * @var array + * @access public + */ var $categories = array(); - + /** + * Stores Entries + * + * @var array + * @access public + */ var $entries = array(); } +/** + * Structure that store Atom Entry Properties + * + * @package AtomLib + */ class AtomEntry { + /** + * Stores Links + * @var array + * @access public + */ var $links = array(); + /** + * Stores Categories + * @var array + * @access public + */ var $categories = array(); } +/** + * AtomLib Atom Parser API + * + * @package AtomLib + */ class AtomParser { var $NS = 'http://www.w3.org/2005/Atom'; -- cgit