Returns the title of the item. |
Signature: getTitle() |
Returns:
String - The title of the item, or an empty string.
|
Example:
Returns the title of the item. $title = $myItem->getTitle(); |
Returns the url of the item. |
Signature: getLink() |
Returns:
String - The url of the item, or an empty string.
|
Example:
Returns the url of the item. $link = $myItem->getLink(); |
Returns the description of the item. |
Signature: getDescription() |
Returns:
String - The description of the item, or an empty string.
|
Example:
Returns the description of the item. $description = $myItem->getDescription(); |
Returns the category count of the item. |
Signature: getCategoryCount() |
Returns:
int - The category count of the item.
|
Example:
Returns the category count of the item. $catCount = $myItem->getCategoryCount(); |
Returns a reference to the category at the specified index. |
Signature: &getCategory($index) |
Parameters:
int index - The index of the requested category.
|
Returns:
xml_domit_rss_category - The category at the specified index.
|
Example:
Returns the category at the specified index. $myCategory =& $myItem->getCategory(0); |