mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 17:15:25 +03:00
23 lines
593 B
PHP
23 lines
593 B
PHP
<?php
|
|
|
|
class ListverseBridge extends FeedExpander
|
|
{
|
|
const MAINTAINER = 'IceWreck';
|
|
const NAME = 'Listverse Bridge';
|
|
const URI = 'https://listverse.com/';
|
|
const CACHE_TIMEOUT = 3600;
|
|
const DESCRIPTION = 'RSS feed for Listverse';
|
|
|
|
public function collectData()
|
|
{
|
|
$this->collectExpandableDatas('https://listverse.com/feed/', 15);
|
|
}
|
|
|
|
protected function parseItem(array $item)
|
|
{
|
|
$dom = getSimpleHTMLDOM($item['uri']);
|
|
$article = $dom->find('#articlecontentonly', 0);
|
|
$item['content'] = $article;
|
|
return $item;
|
|
}
|
|
}
|