rss-bridge/bridges/TheWhiteboardBridge.php
Eugene Molotov 37cb4091d4
bridges: remove redundant "or returnServerError" after getContents/getSimpleHTMLDom/getSimpleHTMLDomCached (#2398)
When fetching website contents, exceptions already raise on fetching error
2022-01-02 14:36:09 +05:00

22 lines
648 B
PHP

<?php
class TheWhiteboardBridge extends BridgeAbstract {
const NAME = 'The Whiteboard';
const URI = 'https://www.the-whiteboard.com/';
const DESCRIPTION = 'Get the latest comic from The Whiteboard';
const MAINTAINER = 'CyberJacob';
public function collectData() {
$item = array();
$html = getSimpleHTMLDOM(self::URI);
$image = $html->find('center', 1)->find('img', 0);
$image->src = self::URI . '/' . $image->src;
$item['title'] = explode("\r\n", $html->find('center', 1)->plaintext)[0];
$item['content'] = $image;
$item['timestamp'] = explode("\r\n", $html->find('center', 1)->plaintext)[0];
$this->items[] = $item;
}
}