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 { ... }
37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<?php
|
|
class HentaiHavenBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'albirew';
|
|
const NAME = 'Hentai Haven';
|
|
const URI = 'http://hentaihaven.org/';
|
|
const CACHE_TIMEOUT = 21600; // 6h
|
|
const DESCRIPTION = 'Returns releases from Hentai Haven';
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
or returnServerError('Could not request Hentai Haven.');
|
|
|
|
foreach($html->find('div.zoe-grid') as $element) {
|
|
$item = array();
|
|
$item['uri'] = $element->find('div.brick-content h3 a', 0)->href;
|
|
$thumbnailUri = $element->find('a.thumbnail-image img', 0)->getAttribute('data-src');
|
|
$item['title'] = mb_convert_encoding(
|
|
trim($element->find('div.brick-content h3 a', 0)->innertext),
|
|
'UTF-8',
|
|
'HTML-ENTITIES'
|
|
);
|
|
|
|
$item['tags'] = $element->find('div.oFlyout_bg div.oFlyout div.flyoutContent span.tags', 0)->plaintext;
|
|
$item['content'] = 'Tags: '
|
|
. $item['tags']
|
|
. '<br><br><a href="'
|
|
. $item['uri']
|
|
. '"><img width="300" height="169" src="'
|
|
. $thumbnailUri
|
|
. '" /></a><br>'
|
|
. $element->find('div.oFlyout_bg div.oFlyout div.flyoutContent p.description', 0)->innertext;
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|