ZMObject
|
+--ZMRssItem
public class ZMRssItem
extends ZMObject
| Fields inherited from org.zenmagick.ZMObject | |
|---|---|
| properties_ | |
| Constructor Summary | |
|---|---|
ZMRssItem(mixed item, array Array) Create new RSS item. |
|
| Method Summary | |
|---|---|
| string | Get the item category. |
| string | Get the item description. |
| string | getLink() Get the item link. |
| array | Get all properties. |
| string | getProperty(string name) Custom get method for properties that do not have a dedicated access method. |
| string | Get the item publish date. |
| 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 | setProperty(string name, string value) Custom set method for properties that do not have a dedicated access method. |
| void | setPubDate(string date) Set the item publish date. |
| void | setTitle(string title) Set the item title. |
| Methods inherited from org.zenmagick.ZMObject | |
|---|---|
| attachMethod, get, getAttachedMethods, getPropertyNames, set, singleton | |
public ZMRssItem(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 array getProperties()
Get all properties.
public string getProperty(string name)
Custom get method for properties that do not have a dedicated access method.
null.public string getPubDate()
Get the item publish date.
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 setProperty(string name, string value)
Custom set method for properties that do not have a dedicated access method.
public void setPubDate(string date)
Set the item publish date.
public void setTitle(string title)
Set the item title.
A RSS feed item.
ZenMagick wrapper around
lastRSS.