\JFeed
Class to encapsulate a feed for the Joomla Platform.
Synopsis
class JFeed
implements
ArrayAccess
{
- // members
- protected $properties;
- protected $entries;
- // methods
- public mixed __get()
- public void __set()
- public JFeed addCategory()
- public JFeed addContributor()
- public JFeed addEntry()
- public boolean offsetExists()
- public mixed offsetGet()
- public boolean offsetSet()
- public void offsetUnset()
- public JFeed removeCategory()
- public JFeed removeContributor()
- public JFeed removeEntry()
- public JFeed setAuthor()
Hierarchy
Implements
Members
protected
- $entries — array
- $properties — array
Methods
public
- __get() — Magic method to return values for feed properties.
- __set() — Magic method to set values for feed properties.
- addCategory() — Method to add a category to the feed object.
- addContributor() — Method to add a contributor to the feed object.
- addEntry() — Method to add an entry to the feed object.
- offsetExists() — Whether or not an offset exists. This method is executed when using isset() or empty() on objects implementing ArrayAccess.
- offsetGet() — Returns the value at specified offset.
- offsetSet() — Assigns a value to the specified offset.
- offsetUnset() — Unsets an offset.
- removeCategory() — Method to remove a category from the feed object.
- removeContributor() — Method to remove a contributor from the feed object.
- removeEntry() — Method to remove an entry from the feed object.
- setAuthor() — Shortcut method to set the author for the feed object.