mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-31 22:05:20 +03:00
[OpenClassroomsBridge] Remove bridge (#2582)
This commit is contained in:
parent
983df45264
commit
e525b5b427
1 changed files with 0 additions and 47 deletions
|
@ -1,47 +0,0 @@
|
||||||
<?php
|
|
||||||
class OpenClassroomsBridge extends BridgeAbstract {
|
|
||||||
|
|
||||||
//const MAINTAINER = 'sebsauvage';
|
|
||||||
const NAME = 'OpenClassrooms Bridge';
|
|
||||||
const URI = 'https://openclassrooms.com/';
|
|
||||||
const CACHE_TIMEOUT = 21600; // 6h
|
|
||||||
const DESCRIPTION = 'Returns latest tutorials from OpenClassrooms.';
|
|
||||||
|
|
||||||
const PARAMETERS = array( array(
|
|
||||||
'u' => array(
|
|
||||||
'name' => 'Catégorie',
|
|
||||||
'type' => 'list',
|
|
||||||
'values' => array(
|
|
||||||
'Arts & Culture' => 'arts',
|
|
||||||
'Code' => 'code',
|
|
||||||
'Design' => 'design',
|
|
||||||
'Entreprise' => 'business',
|
|
||||||
'Numérique' => 'digital',
|
|
||||||
'Sciences' => 'sciences',
|
|
||||||
'Sciences Humaines' => 'humainities',
|
|
||||||
'Systèmes d\'information' => 'it',
|
|
||||||
'Autres' => 'others'
|
|
||||||
)
|
|
||||||
)
|
|
||||||
));
|
|
||||||
|
|
||||||
public function getURI(){
|
|
||||||
if(!is_null($this->getInput('u'))) {
|
|
||||||
return self::URI . '/courses?categories=' . $this->getInput('u') . '&title=&sort=updatedAt+desc';
|
|
||||||
}
|
|
||||||
|
|
||||||
return parent::getURI();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function collectData(){
|
|
||||||
$html = getSimpleHTMLDOM($this->getURI());
|
|
||||||
|
|
||||||
foreach($html->find('.courseListItem') as $element) {
|
|
||||||
$item = array();
|
|
||||||
$item['uri'] = self::URI . $element->find('a', 0)->href;
|
|
||||||
$item['title'] = $element->find('h3', 0)->plaintext;
|
|
||||||
$item['content'] = $element->find('slidingItem__descriptionContent', 0)->plaintext;
|
|
||||||
$this->items[] = $item;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue