ZMObject
└─ZMRssItem
public class ZMRssItem
extends ZMObject
| Fields inherited from org.zenmagick.core\ZMObject | |
|---|---|
| properties_ | |
| Method Summary | |
|---|---|
| void | __construct(mixed item, array Array) Create new RSS item. |
| string | Get the item category. |
| string | Get the item description. |
| string | getLink() Get the item link. |
| string | Get the item publish date. |
| array | getTags() Get a list of custom tags to be handled. |
| string | getTitle() Get the item title. |
| void | setCategory(string category) set the item category. |
| void | setDescription(string description) Set the item description. |
| void | setLink(string link) Set the item link. |
| void | setPubDate(string date) Set the item publish date. |
| void | setTags(array tags) Set a list of custom tags to be handled. |
| void | setTitle(string title) Set the item title. |
| Methods inherited from org.zenmagick.core\ZMObject | |
|---|---|
| __construct, attachMethod, get, getAttachedMethods, getProperties, getPropertyNames, set, singleton | |
public void __construct(mixed item, array Array)
Create new RSS item.
public string getCategory()
Get the item category.
public string getDescription()
Get the item description.
public string getLink()
Get the item link.
public string getPubDate()
Get the item publish date.
public array getTags()
Get a list of custom tags to be handled.
public string getTitle()
Get the item title.
public void setCategory(string category)
set the item category.
public void setDescription(string description)
Set the item description.
public void setLink(string link)
Set the item link.
public void setPubDate(string date)
Set the item publish date.
public void setTags(array tags)
Set a list of custom tags to be handled.
public void setTitle(string title)
Set the item title.
A RSS feed item.