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 { ... }
35 lines
1 KiB
PHP
35 lines
1 KiB
PHP
<?php
|
|
class CopieDoubleBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'superbaillot.net';
|
|
const NAME = 'CopieDouble';
|
|
const URI = 'http://www.copie-double.com/';
|
|
const CACHE_TIMEOUT = 14400; // 4h
|
|
const DESCRIPTION = 'CopieDouble';
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
or returnServerError('Could not request CopieDouble.');
|
|
|
|
$table = $html->find('table table', 2);
|
|
|
|
foreach($table->find('tr') as $element) {
|
|
$td = $element->find('td', 0);
|
|
|
|
if($td->class === 'couleur_1') {
|
|
$item = array();
|
|
$title = $td->innertext;
|
|
$pos = strpos($title, '<a');
|
|
$title = substr($title, 0, $pos);
|
|
$item['title'] = $title;
|
|
} elseif(strpos($element->innertext, '/images/suivant.gif') === false) {
|
|
$a = $element->find('a', 0);
|
|
$item['uri'] = self::URI . $a->href;
|
|
$content = str_replace('src="/', 'src="/' . self::URI, $element->find("td", 0)->innertext);
|
|
$content = str_replace('href="/', 'href="' . self::URI, $content);
|
|
$item['content'] = $content;
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|
|
}
|