Method |
Description |
|
__construct ( AbstractFormat $adapter ) : Reader |
Constructor |
|
__get ( string $name ) : mixed |
Get method to return the value of feed[$name]. |
|
__toString ( ) : string |
Render feed reader object to string |
|
adapter ( ) : AbstractFormat |
Method to get the adapter object |
|
factory ( AbstractFormat $adapter ) : Reader |
Static method to instantiate the data object and return itself
to facilitate chaining methods together. |
|
feed ( ) : array |
Method to get the adapter object feed |
|
getByAccountId ( string $service, string $id, integer $limit, string $prefix = 'Pop\Feed\Format\' ) : Reader |
Static method to create a Feed Reader object from an account ID |
|
getByAccountName ( string $service, string $name, integer $limit, string $prefix = 'Pop\Feed\Format\' ) : Reader |
Static method to create a Feed Reader object from an account name |
|
getByUrl ( string $url, integer $limit, string $prefix = 'Pop\Feed\Format\' ) : Reader |
Static method to create a Feed Reader object from a URL |
|
getDateFormat ( ) : string |
Method to get feed date format |
|
getTemplate ( ) : string |
Method to get feed template |
|
isAtom ( ) : boolean |
Method to determine if the feed type is Atom |
|
isFacebook ( ) : boolean |
Method to determine if the feed type is Facebook |
|
isJson ( ) : boolean |
Method to determine if the feed type is JSON |
|
isPhp ( ) : boolean |
Method to determine if the feed type is PHP |
|
isPlaylist ( ) : boolean |
Method to determine if the feed type is a playlist |
|
isRss ( ) : boolean |
Method to determine if the feed type is RSS |
|
isTwitter ( ) : boolean |
Method to determine if the feed type is Twitter |
|
isVimeo ( ) : boolean |
Method to determine if the feed type is Twitter |
|
isYoutube ( ) : boolean |
Method to determine if the feed type is YouTube |
|
render ( boolean $ret = false ) : mixed |
Method to render the feed |
|
setDateFormat ( string $date ) : Reader |
Method to set date format |
|
setTemplate ( string $tmpl ) : Reader |
Method to set item template |
|