mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
Create DamoangTutorialBridge
This commit is contained in:
parent
80c43f10d8
commit
4ec83dc8fd
20
bridges/DamoangTutorialBridge
Normal file
20
bridges/DamoangTutorialBridge
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
<?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
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user