Add bridge for Phoronix (#1412)
This commit is contained in:
parent
f0363ba03b
commit
96e58d4c94
1 changed files with 22 additions and 0 deletions
22
bridges/PhoronixBridge.php
Normal file
22
bridges/PhoronixBridge.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
class PhoronixBridge extends FeedExpander {
|
||||
|
||||
const MAINTAINER = 'IceWreck';
|
||||
const NAME = 'Phoronix Bridge';
|
||||
const URI = 'https://www.phoronix.com';
|
||||
const CACHE_TIMEOUT = 3600;
|
||||
const DESCRIPTION = 'RSS feed for Linux news website Phoronix';
|
||||
|
||||
public function collectData(){
|
||||
$this->collectExpandableDatas('https://www.phoronix.com/rss.php', 15);
|
||||
}
|
||||
|
||||
protected function parseItem($newsItem){
|
||||
$item = parent::parseItem($newsItem);
|
||||
// $articlePage gets the entire page's contents
|
||||
$articlePage = getSimpleHTMLDOM($newsItem->link);
|
||||
$article = $articlePage->find('.content', 0);
|
||||
$item['content'] = $article;
|
||||
return $item;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue