1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-03 07:07:39 +02:00

Updated BridgeAbstract (markdown)

LogMANOriginal
2018-09-15 17:37:43 +02:00
parent cdef02b7b6
commit c362502d72

@@ -3,7 +3,7 @@
To create a new Bridge extending `BridgeAbstract` you must specify some [basic metadata](#basic-metadata) implement following functions:
- [`collectData`](#the-collectdata-function) (**required**)
- [`getDescription`](#the-getdescription-function)
- [`getDescription`](../The-getDescription-function)
- [`getMaintainer`](#the-getmaintainer-function)
- [`getName`](#the-getname-function)
- [`getURI`](#the-geturi-function)
@@ -175,18 +175,6 @@ Parameter | ATOM | HTML | (M)RSS
`enclosures`|X|X|X
`categories`|X|X|X
## The `getDescription` function
This function returns the description of a bridge.
**Notice:** **RSS-Bridge** will by default return `const DESCRIPTION` which is defined in the bridge, so you only have to implement this function if you require different behavior!
```PHP
public function getDescription(){
return self::DESCRIPTION;
}
```
## The `getMaintainer` function
This function returns the maintainer name of a bridge.