ItemInterface::setTitle

public ItemInterface::setTitle($title) Sets the title of the feed item. Parameters string $title: The title of the feed item. Return value \Drupal\aggregator\ItemInterface The called feed item entity. File core/modules/aggregator/src/ItemInterface.php, line 48 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function setTitle($title);

ItemInterface::setPostedTime

public ItemInterface::setPostedTime($timestamp) Sets the posted date of the feed item, as a Unix timestamp. Parameters int $timestamp: The posted date of the feed item, as a Unix timestamp. Return value \Drupal\aggregator\ItemInterface The called feed item entity. File core/modules/aggregator/src/ItemInterface.php, line 124 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function setPostedTime($timestamp);

ItemInterface::setLink

public ItemInterface::setLink($link) Sets the link to the feed item. Parameters string $link: The link to the feed item. Return value \Drupal\aggregator\ItemInterface The called feed item entity. File core/modules/aggregator/src/ItemInterface.php, line 67 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function setLink($link);

ItemInterface::setGuid

public ItemInterface::setGuid($guid) Sets the unique identifier for the feed item. Parameters string $guid: The unique identifier for the feed item. Return value \Drupal\aggregator\ItemInterface The called feed item entity. File core/modules/aggregator/src/ItemInterface.php, line 143 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function setGuid($guid);

ItemInterface::setFeedId

public ItemInterface::setFeedId($fid) Sets the feed id of aggregator item. Parameters int $fid: The feed id. Return value \Drupal\aggregator\ItemInterface The called feed item entity. File core/modules/aggregator/src/ItemInterface.php, line 29 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function setFeedId($fid);

ItemInterface::setDescription

public ItemInterface::setDescription($description) Sets the body of the feed item. Parameters string $description: The body of the feed item. Return value \Drupal\aggregator\ItemInterface The called feed item entity. File core/modules/aggregator/src/ItemInterface.php, line 105 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function setDescription($description);

ItemInterface::setAuthor

public ItemInterface::setAuthor($author) Sets the author of the feed item. Parameters string $author: The author name of the feed item. Return value \Drupal\aggregator\ItemInterface The called feed item entity. File core/modules/aggregator/src/ItemInterface.php, line 86 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function setAuthor($author);

ItemInterface::getTitle

public ItemInterface::getTitle() Returns the title of the feed item. Return value string The title of the feed item. File core/modules/aggregator/src/ItemInterface.php, line 37 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function getTitle();

ItemInterface::getPostedTime

public ItemInterface::getPostedTime() Returns the posted date of the feed item, as a Unix timestamp. Return value int The posted date of the feed item, as a Unix timestamp. File core/modules/aggregator/src/ItemInterface.php, line 113 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function getPostedTime();

ItemInterface::getLink

public ItemInterface::getLink() Returns the link to the feed item. Return value string The link to the feed item. File core/modules/aggregator/src/ItemInterface.php, line 56 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function getLink();