mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-10 08:58:50 +00:00
21 lines
494 B
Plaintext
21 lines
494 B
Plaintext
<?php
|
|
|
|
class MyBridge extends BridgeAbstract
|
|
{
|
|
const NAME = 'Unnamed bridge';
|
|
const URI = '';
|
|
const DESCRIPTION = 'No description provided';
|
|
const MAINTAINER = 'No maintainer';
|
|
const PARAMETERS = []; // Can be omitted!
|
|
const CACHE_TIMEOUT = 3600; // Can be omitted!
|
|
|
|
public function collectData()
|
|
{
|
|
$item = []; // Create an empty item
|
|
|
|
$item['title'] = 'Hello World!';
|
|
|
|
$this->items[] = $item; // Add item to the list
|
|
}
|
|
}
|