Created The getIcon function (markdown)

LogMANOriginal 2018-09-15 17:43:55 +02:00
parent f0c2572937
commit 64c292a2d0

9
The-getIcon-function.md Normal file

@ -0,0 +1,9 @@
The `getIcon` function returns the URI for an icon, used as favicon in feeds.
If no icon is specified by the bridge, RSS-Bridge will use a default location: `static::URI . '/favicon.ico'` (i.e. "https://github.com/favicon.ico") which may or may not exist.
```PHP
public function getIcon(){
return self::URI . '/favicon.ico';
}
```