2014-05-26 00:30:46 +02:00
|
|
|
<?php
|
2016-09-04 13:47:13 +02:00
|
|
|
class AcrimedBridge extends FeedExpander {
|
2015-11-03 23:28:44 +01:00
|
|
|
|
2016-09-04 13:47:13 +02:00
|
|
|
const MAINTAINER = "qwertygc";
|
|
|
|
const NAME = "Acrimed Bridge";
|
|
|
|
const URI = "http://www.acrimed.org/";
|
|
|
|
const DESCRIPTION = "Returns the newest articles.";
|
2015-11-03 15:36:19 +01:00
|
|
|
|
2016-09-04 13:47:13 +02:00
|
|
|
public function collectData(){
|
|
|
|
$this->collectExpandableDatas("http://www.acrimed.org/spip.php?page=backend");
|
|
|
|
}
|
2016-02-26 19:41:35 +01:00
|
|
|
|
2016-09-04 13:47:13 +02:00
|
|
|
protected function parseItem($newsItem){
|
|
|
|
$item = $this->parseRSS_2_0_Item($newsItem);
|
2016-02-26 19:41:35 +01:00
|
|
|
|
2016-09-04 13:47:13 +02:00
|
|
|
$hs = new HTMLSanitizer();
|
|
|
|
$articlePage = $this->getSimpleHTMLDOM($newsItem->link);
|
|
|
|
$article = $hs->sanitize($articlePage->find('article.article1', 0)->innertext);
|
|
|
|
$article = HTMLSanitizer::defaultImageSrcTo($article, "http://www.acrimed.org/");
|
|
|
|
$item['content'] = $article;
|
2016-02-26 19:41:35 +01:00
|
|
|
|
2016-09-04 13:47:13 +02:00
|
|
|
return $item;
|
|
|
|
}
|
2014-05-26 00:30:46 +02:00
|
|
|
|
|
|
|
public function getCacheDuration(){
|
2016-02-26 19:42:52 +01:00
|
|
|
return 4800; // 2 hours
|
2014-05-26 00:30:46 +02:00
|
|
|
}
|
|
|
|
}
|