2014-02-04 17:54:18 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @name Sexactu
|
|
|
|
* @description Sexactu via rss-bridge
|
|
|
|
* @update 04/02/2014
|
|
|
|
*/
|
2014-02-05 10:16:45 +01:00
|
|
|
class SexactuBridge extends BridgeAbstract{
|
2014-02-04 17:54:18 +01:00
|
|
|
|
|
|
|
public function collectData(array $param){
|
|
|
|
$html = file_get_html('http://http://www.gqmagazine.fr/sexactu') or $this->returnError('Could not request http://www.gqmagazine.fr/sexactu.', 404);
|
|
|
|
|
|
|
|
foreach($html->find('div.content-holder ul li') as $element) {
|
|
|
|
$item = new Item();
|
|
|
|
|
2014-02-05 10:16:45 +01:00
|
|
|
// various metadata
|
|
|
|
$titleBock = $element->find('title-holder');
|
|
|
|
$titleData = $titleBlock->find('article-title h2 a');
|
2014-02-04 17:54:18 +01:00
|
|
|
|
2014-02-05 10:16:45 +01:00
|
|
|
$item->title = trim($titleData->innertext);
|
|
|
|
$item->uri = $titleData->href;
|
|
|
|
$item->name = "Maïa Mazaurette";
|
|
|
|
$item->content = $element->find('text-container')->innertext;
|
2014-02-04 17:54:18 +01:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(){
|
|
|
|
return 'Sexactu';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURI(){
|
|
|
|
return 'http://http://www.gqmagazine.fr/sexactu/';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
|
|
|
return 7200; // 2h hours
|
|
|
|
}
|
|
|
|
public function getDescription(){
|
|
|
|
return "Sexactu via rss-bridge";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|