mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
Add file level phpdoc to external libraries we use. Fixes #5443 props darkdragon.
git-svn-id: https://develop.svn.wordpress.org/trunk@6440 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
+47
-6
@@ -1,26 +1,67 @@
|
||||
<?php
|
||||
/*
|
||||
* atomlib.php - Atom Syndication Format PHP Library
|
||||
* Atom Syndication Format PHP Library
|
||||
*
|
||||
* Project: http://code.google.com/p/phpatomlib/
|
||||
*
|
||||
* Author: Elias Torres <elias@torrez.us>
|
||||
* Version: 0.4
|
||||
* @package AtomLib
|
||||
* @link http://code.google.com/p/phpatomlib/
|
||||
*
|
||||
* @author: Elias Torres <elias@torrez.us>
|
||||
* @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';
|
||||
|
||||
Reference in New Issue
Block a user