summaryrefslogtreecommitdiff
path: root/bridges/DemoBridge.php
blob: f48b4510a34df410b0919b15ef5c072715461a18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?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 = array(
		'testCheckbox' => array(
			'testCheckbox' => array(
				'type' => 'checkbox',
				'name' => 'test des checkbox'
			)
		),
		'testList' => array(
			'testList' => array(
				'type' => 'list',
				'name' => 'test des listes',
				'values' => array(
					'Test' => 'test',
					'Test 2' => 'test2'
				)
			)
		),
		'testNumber' => array(
			'testNumber' => array(
				'type' => 'number',
				'name' => 'test des numéros',
				'exampleValue' => '1515632'
			)
		)
	);

	public function collectData(){

		$item = array();
		$item['author'] = 'Me!';
		$item['title'] = 'Test';
		$item['content'] = 'Awesome content !';
		$item['id'] = 'Lalala';
		$item['uri'] = 'http://example.com/test';

		$this->items[] = $item;
	}
}