diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index 81b531c2..bc9672ed 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -100,7 +100,7 @@
See CacheInterface
.
interface CacheInterface
{
- public function setScope(string $scope): void;
+ public function get(string $key, $default = null);
- public function setKey(array $key): void;
+ public function set(string $key, $value, int $ttl = null): void;
- public function loadData();
+ public function delete(string $key): void;
- public function saveData($data): void;
+ public function clear(): void;
- public function getTime(): ?int;
-
- public function purgeCache(int $seconds): void;
+ public function prune(): void;
}
The getInput
function is used to receive a value for a parameter, specified in const PARAMETERS
$this->getInput('your input name here');
-getInput
will either return the value for your parameter or null
if the parameter is unknown or not specified.
getInput
will either return the value for your parameter
+or null
if the parameter is unknown or not specified.
The getKey
function is used to receive the key name to a selected list value given the name of the list, specified in const PARAMETERS
+
The getKey
function is used to receive the key name to a selected list
+value given the name of the list, specified in const PARAMETERS
Is able to work with multidimensional list arrays.
// Given a multidimensional array like this
const PARAMETERS = [[
@@ -137,7 +139,8 @@ const PARAMETERS = [[
$this->getKey('country');
// if the selected value was "ve", this function will return "Venezuela"
-getKey
will either return the key name for your parameter or null
if the parameter is unknown or not specified.
getKey
will either return the key name for your parameter or null
if the parameter
+is unknown or not specified.
The getContents
function uses cURL to acquire data from the specified URI while respecting the various settings defined at a global level by RSS-Bridge (i.e., proxy host, user agent, etc.). This function accepts a few parameters: