Method to add a category to the feed entry object.
JFeedEntry
addCategory
(
string $name, [
string $uri =
''])
-
string
$name: The name of the category to add.
-
string
$uri: The optional URI for the category to add.
Method to add a contributor to the feed entry object.
JFeedEntry
addContributor
(
string $name,
string $email, [
string $uri =
null], [
string $type =
null])
-
string
$name: The full name of the person to add.
-
string
$email: The email address of the person to add.
-
string
$uri: The optional URI for the person to add.
-
string
$type: The optional type of person to add.
Method to add a link to the feed entry object.
Method to remove a category from the feed entry object.
-
string
$name: The name of the category to remove.
Method to remove a contributor from the feed entry object.
Method to remove a link from the feed entry object.
Shortcut method to set the author for the feed entry object.
JFeedEntry
setAuthor
(
string $name,
string $email, [
string $uri =
null], [
string $type =
null])
-
string
$name: The full name of the person to set.
-
string
$email: The email address of the person to set.
-
string
$uri: The optional URI for the person to set.
-
string
$type: The optional type of person to set.
Magic method to return values for feed entry properties.
mixed
__get
(string $name)
-
string
$name: The name of the property.
Magic method to set values for feed properties.
void
__set
(string $name, mixed $value)
-
string
$name: The name of the property.
-
mixed
$value: The value to set for the property.