Wrap text
Report abuse
function FeedItems() {
$output = new DataObjectSet();
$this->feed = new SimplePie($this->RssUrl);
$this->feed->init();
if($items = $this->feed->get_items(0, $this->NumberToShow)) {
foreach($items as $item) {
$output->push(new ArrayData(array(
"Title" => $item->get_title(),
"Link" => $item->get_link()
)));
}
return $output;
}
}