blob: c36cc5f602d71fb3a6fd9688c8cf4b5543ebf60a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?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;
}
}
|