forked from blallo/rss-bridge
a4b9611e66
- Do not add spaces after opening or before closing parenthesis // Wrong if( !is_null($var) ) { ... } // Right if(!is_null($var)) { ... } - Add space after closing parenthesis // Wrong if(true){ ... } // Right if(true) { ... } - Add body into new line - Close body in new line // Wrong if(true) { ... } // Right if(true) { ... } Notice: Spaces after keywords are not detected: // Wrong (not detected) // -> space after 'if' and missing space after 'else' if (true) { ... } else{ ... } // Right if(true) { ... } else { ... }
23 lines
697 B
PHP
23 lines
697 B
PHP
<?php
|
|
class DansTonChatBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'Astalaseven';
|
|
const NAME = 'DansTonChat Bridge';
|
|
const URI = 'https://danstonchat.com/';
|
|
const CACHE_TIMEOUT = 21600; //6h
|
|
const DESCRIPTION = 'Returns latest quotes from DansTonChat.';
|
|
|
|
public function collectData(){
|
|
|
|
$html = getSimpleHTMLDOM(self::URI . 'latest.html')
|
|
or returnServerError('Could not request DansTonChat.');
|
|
|
|
foreach($html->find('div.item') as $element) {
|
|
$item = array();
|
|
$item['uri'] = $element->find('a', 0)->href;
|
|
$item['title'] = 'DansTonChat ' . $element->find('a', 1)->plaintext;
|
|
$item['content'] = $element->find('a', 0)->innertext;
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|