2013-12-16 12:07:48 +04:00
|
|
|
<?php
|
|
|
|
class DansTonChatBridge extends BridgeAbstract{
|
|
|
|
|
2016-08-30 12:23:55 +03:00
|
|
|
const MAINTAINER = "Astalaseven";
|
|
|
|
const NAME = "DansTonChat Bridge";
|
|
|
|
const URI = "http://danstonchat.com/";
|
2016-09-25 18:04:28 +03:00
|
|
|
const CACHE_TIMEOUT = 21600; //6h
|
2016-08-30 12:23:55 +03:00
|
|
|
const DESCRIPTION = "Returns latest quotes from DansTonChat.";
|
2015-11-04 01:28:44 +03:00
|
|
|
|
2016-08-25 02:24:53 +03:00
|
|
|
public function collectData(){
|
2013-12-16 12:07:48 +04:00
|
|
|
|
2016-09-26 00:22:33 +03:00
|
|
|
$html = getSimpleHTMLDOM(self::URI.'latest.html')
|
|
|
|
or returnServerError('Could not request DansTonChat.');
|
2013-12-16 12:07:48 +04:00
|
|
|
|
|
|
|
foreach($html->find('div.item') as $element) {
|
2016-08-22 19:55:59 +03:00
|
|
|
$item = array();
|
|
|
|
$item['uri'] = $element->find('a', 0)->href;
|
|
|
|
$item['title'] = 'DansTonChat '.$element->find('a', 1)->plaintext;
|
|
|
|
$item['content'] = $element->find('a', 0)->innertext;
|
2013-12-16 12:07:48 +04:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|