Returns the title of the channel. |
Signature: getTitle() |
Returns:
String - The title of the channel, or an empty string.
|
Example:
Returns the title of the channel. $title = $myChannel->getTitle(); |
Returns the url of the channel. |
Signature: getLink() |
Returns:
String - The url of the channel, or an empty string.
|
Example:
Returns the url of the channel. $link = $myChannel->getLink(); |
Returns the description of the channel. |
Signature: getDescription() |
Returns:
String - The description of the channel, or an empty string.
|
Example:
Returns the description of the channel. $description = $myChannel->getDescription(); |
Returns the item count of the channel. |
Signature: getItemCount() |
Returns:
int - The item count of the channel.
|
Example:
Returns the item count of the channel. $itemCount = $myChannel->getItemCount(); |
Returns a reference to the item at the specified index. |
Signature: &getItem($index) |
Parameters:
int index - The index of the requested item.
|
Returns:
xml_domit_rss_item - The item at the specified index.
|
Example:
Returns the item at the specified index. $myItem =& $myChannel->getItem(0); |
Returns the category count of the channel. |
Signature: getCategoryCount() |
Returns:
int - The category count of the channel.
|
Example:
Returns the category count of the channel. $catCount = $myChannel->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 =& $myChannel->getCategory(0); |