mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 01:25:28 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
25 lines
714 B
PHP
25 lines
714 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 = [];
|
|
|
|
$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;
|
|
}
|
|
}
|