mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-23 15:06:53 +00:00
30 lines
835 B
PHP
30 lines
835 B
PHP
<?php
|
|
class CommonDreamsBridge extends FeedExpander
|
|
{
|
|
const MAINTAINER = "nyutag";
|
|
const NAME = "CommonDreams Bridge";
|
|
const URI = "http://www.commondreams.org/";
|
|
const DESCRIPTION = "Returns the newest articles.";
|
|
|
|
public function collectData()
|
|
{
|
|
$this->collectExpandableDatas('http://www.commondreams.org/rss.xml', 10);
|
|
}
|
|
|
|
protected function parseItem($newsItem)
|
|
{
|
|
$item = parent::parseItem($newsItem);
|
|
$item['content'] = $this->CommonDreamsExtractContent($item['uri']);
|
|
return $item;
|
|
}
|
|
|
|
private function CommonDreamsExtractContent($url)
|
|
{
|
|
$html3 = getSimpleHTMLDOMCached($url);
|
|
$text = $html3->find('div[class=field--type-text-with-summary]', 0)->innertext;
|
|
$html3->clear();
|
|
unset($html3);
|
|
return $text;
|
|
}
|
|
}
|