2015-11-03 15:36:19 +01:00
|
|
|
<?php
|
|
|
|
class DemoBridge extends BridgeAbstract{
|
|
|
|
|
|
|
|
public function loadMetadatas() {
|
|
|
|
|
|
|
|
$this->maintainer = "teromene";
|
|
|
|
$this->name = "DemoBridge";
|
|
|
|
$this->uri = "http://github.com/sebsauvage/rss-bridge";
|
|
|
|
$this->description = "Bridge used for demos";
|
|
|
|
|
2016-08-22 01:25:56 +02:00
|
|
|
$this->parameters['testCheckbox'] = array(
|
|
|
|
'testCheckbox'=>array(
|
|
|
|
'type'=>'checkbox',
|
|
|
|
'name'=>'test des checkbox'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->parameters['testList'] = array(
|
|
|
|
'testList'=>array(
|
|
|
|
'type'=>'list',
|
|
|
|
'name'=>'test des listes',
|
|
|
|
'values'=>array(
|
|
|
|
'Test'=>'test',
|
|
|
|
'Test 2'=>'test2'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->parameters['testNumber'] = array(
|
|
|
|
'testNumber'=>array(
|
|
|
|
'type'=>'number',
|
|
|
|
'name'=>'test des numéros',
|
|
|
|
'exampleValue'=>'1515632'
|
|
|
|
)
|
|
|
|
);
|
2015-11-03 15:36:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function collectData(array $param){
|
|
|
|
|
2016-08-22 18:55:59 +02:00
|
|
|
$item = array();
|
|
|
|
$item['author'] = "Me!";
|
|
|
|
$item['title'] = "Test";
|
|
|
|
$item['content'] = "Awesome content !";
|
|
|
|
$item['id'] = "Lalala";
|
|
|
|
$item['uri'] = "http://test.test/test";
|
2016-01-19 13:34:38 +01:00
|
|
|
|
|
|
|
$this->items[] = $item;
|
|
|
|
|
2015-11-03 15:36:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDuration(){
|
2016-01-19 13:34:38 +01:00
|
|
|
return 00; // 1 hour
|
2015-11-03 15:36:19 +01:00
|
|
|
}
|
|
|
|
}
|