mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-12-18 08:54:20 +03:00
[BridgeAbstract] Remove mentions of 'loadMetadatas'
parent
5fb591a285
commit
57f0039825
1 changed files with 4 additions and 4 deletions
|
@ -184,9 +184,9 @@ This function returns the description of a bridge.
|
|||
|
||||
## The `getName` function
|
||||
|
||||
This function returns the name of the bridge as it will be displayed on the main page of **RSS-Bridge** or on top of the feed output (HTML, ATOM, etc...).
|
||||
This function returns the name of a bridge..
|
||||
|
||||
**Notice:** **RSS-Bridge** will by default return `const NAME` which is defined in the [`loadMetadatas`](#the-loadmetadatas-function) function, so you only have to implement this function if you require different behavior!
|
||||
**Notice:** **RSS-Bridge** will by default return `const NAME` which is defined in the bridge, so you only have to implement this function if you require different behavior!
|
||||
|
||||
```PHP
|
||||
public function getName(){
|
||||
|
@ -196,9 +196,9 @@ This function returns the name of the bridge as it will be displayed on the main
|
|||
|
||||
## The `getURI` function
|
||||
|
||||
This function returns the URI to the destination site of the bridge. It will be used on the main page of rss-bridge when clicking your bridge name.
|
||||
This function returns the URI to the destination site of a bridge.
|
||||
|
||||
**Notice:** **RSS-Bridge** will by default return `const URI` which is defined in the [`loadMetadatas`](#the-loadmetadatas-function) function, so you only have to implement this function if you require different behavior!
|
||||
**Notice:** **RSS-Bridge** will by default return `const URI` which is defined in the bridge, so you only have to implement this function if you require different behavior!
|
||||
|
||||
```PHP
|
||||
public function getURI(){
|
||||
|
|
Loading…
Reference in a new issue