28 lines
677 B
PHP
28 lines
677 B
PHP
|
<?php
|
||
|
class DavesTrailerPageBridge extends BridgeAbstract {
|
||
|
const MAINTAINER = 'johnnygroovy';
|
||
|
const NAME = 'Daves Trailer Page Bridge';
|
||
|
const URI = 'https://www.davestrailerpage.co.uk/';
|
||
|
const DESCRIPTION = 'Last trailers in HD thanks to Dave.';
|
||
|
|
||
|
public function collectData(){
|
||
|
$html = getSimpleHTMLDOM(static::URI)
|
||
|
or returnClientError('No results for this query.');
|
||
|
|
||
|
foreach ($html->find('tr[!align]') as $tr) {
|
||
|
$item = array();
|
||
|
|
||
|
// title
|
||
|
$item['title'] = $tr->find('td', 0)->find('b', 0)->plaintext;
|
||
|
|
||
|
// content
|
||
|
$item['content'] = $tr->find('ul', 1);
|
||
|
|
||
|
// uri
|
||
|
$item['uri'] = $tr->find('a', 3)->getAttribute('href');
|
||
|
|
||
|
$this->items[] = $item;
|
||
|
}
|
||
|
}
|
||
|
}
|