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

[core] Add configuration for bridges, allowing private bridges (#1343)

This commit is contained in:
Lyra
2020-12-12 17:05:22 +01:00
committed by GitHub
parent 56b2c516e4
commit 810a2503c9
4 changed files with 70 additions and 6 deletions

View File

@@ -58,6 +58,19 @@ interface BridgeInterface {
*/
public function collectData();
/**
* Get the user's supplied configuration for the bridge
*/
public function getConfiguration();
/**
* Returns the value for the selected configuration
*
* @param string $input The option name
* @return mixed|null The option value or null if the input is not defined
*/
public function getOption($name);
/**
* Returns the description
*