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 { ... }
24 lines
798 B
PHP
24 lines
798 B
PHP
<?php
|
|
class FierPandaBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'snroki';
|
|
const NAME = 'Fier Panda Bridge';
|
|
const URI = 'http://www.fier-panda.fr/';
|
|
const CACHE_TIMEOUT = 21600; // 6h
|
|
const DESCRIPTION = 'Returns latest articles from Fier Panda.';
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM(self::URI)
|
|
or returnServerError('Could not request Fier Panda.');
|
|
|
|
foreach($html->find('div.container-content article') as $element) {
|
|
$item = array();
|
|
$item['uri'] = $this->getURI() . $element->find('a', 0)->href;
|
|
$item['title'] = trim($element->find('h1 a', 0)->innertext);
|
|
// Remove the link at the end of the article
|
|
$element->find('p a', 0)->outertext = '';
|
|
$item['content'] = $element->find('p', 0)->innertext;
|
|
$this->items[] = $item;
|
|
}
|
|
}
|
|
}
|