You are here

class SyndicationItem in Feeds 8.3

Defines an item class for use with an RSS/Atom parser.

Hierarchy

Expanded class hierarchy of SyndicationItem

1 file declares its use of SyndicationItem
SyndicationParser.php in src/Feeds/Parser/SyndicationParser.php

File

src/Feeds/Item/SyndicationItem.php, line 8

Namespace

Drupal\feeds\Feeds\Item
View source
class SyndicationItem extends BaseItem {
  protected $title;
  protected $content;
  protected $description;
  protected $author_name;
  protected $timestamp;
  protected $updated;
  protected $url;
  protected $guid;
  protected $tags;
  protected $geolocations;
  protected $enclosures;

}

Members

Namesort descending Modifiers Type Description Overrides
BaseItem::fromArray public function Loads data in from an array. Overrides ItemInterface::fromArray
BaseItem::get public function Returns the value for a target field. Overrides ItemInterface::get
BaseItem::set public function Sets a value for a field. Overrides ItemInterface::set
BaseItem::toArray public function Converts the item to an array. Overrides ItemInterface::toArray
SyndicationItem::$author_name protected property
SyndicationItem::$content protected property
SyndicationItem::$description protected property
SyndicationItem::$enclosures protected property
SyndicationItem::$geolocations protected property
SyndicationItem::$guid protected property
SyndicationItem::$tags protected property
SyndicationItem::$timestamp protected property
SyndicationItem::$title protected property
SyndicationItem::$updated protected property
SyndicationItem::$url protected property