mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
e9af41d666
* Add bridges for JohannesBlick Steinfeld, OM Online and UsesTech * Fixed linit alert
29 lines
933 B
PHP
29 lines
933 B
PHP
<?php
|
|
|
|
class JohannesBlickBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'Johannes Blick';
|
|
const URI = 'https://www.st-johannes-baptist.de/index.php/unsere-medien/johannesblick-archiv';
|
|
const DESCRIPTION = 'RSS feed for Johannes Blick';
|
|
const MAINTAINER = 'jummo4@yahoo.de';
|
|
|
|
public function collectData()
|
|
{
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
or returnServerError('Could not request: ' . self::URI);
|
|
|
|
$html = defaultLinkTo($html, self::URI);
|
|
foreach ($html->find('td > a') as $index => $a) {
|
|
$item = []; // Create an empty item
|
|
$articlePath = $a->href;
|
|
$item['title'] = $a->innertext;
|
|
$item['uri'] = $articlePath;
|
|
$item['content'] = '';
|
|
|
|
$this->items[] = $item; // Add item to the list
|
|
if (count($this->items) >= 10) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|