ItemInterface::getGuid

public ItemInterface::getGuid() Returns the unique identifier for the feed item. Return value string The unique identifier for the feed item. File core/modules/aggregator/src/ItemInterface.php, line 132 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function getGuid();

ItemInterface::getFeedId

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

ItemInterface::getDescription

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

ItemInterface::getAuthor

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

ItemInterface

Provides an interface defining an aggregator item entity. Hierarchy interface \Drupal\Core\Entity\FieldableEntityInterface; interface \Drupal\Core\Entity\RevisionableInterface; interface \Drupal\Core\TypedData\TranslatableInterfaceinterface \Drupal\Core\Entity\ContentEntityInterface extends \Traversableinterface \Drupal\aggregator\ItemInterface File core/modules/aggregator/src/ItemInterface.php, line 10 Namespace Drupal\aggregator Members Name Modifiers Type Description Acce

Item::setTitle

public Item::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. Overrides ItemInterface::setTitle File core/modules/aggregator/src/Entity/Item.php, line 139 Class Item Defines the aggregator item entity class. Namespace Drupal\aggregator\Entity Code public function setTitle($title) { return $this->set('title', $title); }

Item::setPostedTime

public Item::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. Overrides ItemInterface::setPostedTime File core/modules/aggregator/src/Entity/Item.php, line 195 Class Item Defines the aggregator item entity class. Namespace Drupal\aggregator\Entity Code public function setPostedTime($timestamp)

Item::setLink

public Item::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. Overrides ItemInterface::setLink File core/modules/aggregator/src/Entity/Item.php, line 153 Class Item Defines the aggregator item entity class. Namespace Drupal\aggregator\Entity Code public function setLink($link) { return $this->set('link', $link); }

Item::setGuid

public Item::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. Overrides ItemInterface::setGuid File core/modules/aggregator/src/Entity/Item.php, line 209 Class Item Defines the aggregator item entity class. Namespace Drupal\aggregator\Entity Code public function setGuid($guid) { return $this->set('guid', $guid); }

Item::setFeedId

public Item::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. Overrides ItemInterface::setFeedId File core/modules/aggregator/src/Entity/Item.php, line 125 Class Item Defines the aggregator item entity class. Namespace Drupal\aggregator\Entity Code public function setFeedId($fid) { return $this->set('fid', $fid); }