mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 17:45:40 +03:00
4f75591060
Reformat code base to PSR12 Co-authored-by: rssbridge <noreply@github.com>
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
class DemoBridge extends BridgeAbstract
|
|
{
|
|
const MAINTAINER = 'teromene';
|
|
const NAME = 'DemoBridge';
|
|
const URI = 'http://github.com/rss-bridge/rss-bridge';
|
|
const DESCRIPTION = 'Bridge used for demos';
|
|
|
|
const PARAMETERS = [
|
|
'testCheckbox' => [
|
|
'testCheckbox' => [
|
|
'type' => 'checkbox',
|
|
'name' => 'test des checkbox'
|
|
]
|
|
],
|
|
'testList' => [
|
|
'testList' => [
|
|
'type' => 'list',
|
|
'name' => 'test des listes',
|
|
'values' => [
|
|
'Test' => 'test',
|
|
'Test 2' => 'test2'
|
|
]
|
|
]
|
|
],
|
|
'testNumber' => [
|
|
'testNumber' => [
|
|
'type' => 'number',
|
|
'name' => 'test des numéros',
|
|
'exampleValue' => '1515632'
|
|
]
|
|
]
|
|
];
|
|
|
|
public function collectData()
|
|
{
|
|
$item = [];
|
|
$item['author'] = 'Me!';
|
|
$item['title'] = 'Test';
|
|
$item['content'] = 'Awesome content !';
|
|
$item['id'] = 'Lalala';
|
|
$item['uri'] = 'http://example.com/test';
|
|
|
|
$this->items[] = $item;
|
|
}
|
|
}
|