[BridgeAbstract] Remove mentions of 'loadMetadatas'

LogMANOriginal 2017-02-15 19:51:20 +01:00
parent 5fb591a285
commit 57f0039825

@ -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(){