diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index 6f8ccb4b..ef93bec2 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -100,7 +100,7 @@
$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.
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 = [[
+ 'country' => [
+ 'name' => 'Country',
+ 'type' => 'list',
+ 'values' => [
+ 'North America' => [
+ 'Mexico' => 'mx',
+ 'United States' => 'us'
+ ],
+ 'South America' => [
+ 'Uruguay' => 'uy',
+ 'Venezuela' => 've'
+ ],
+ ]
+ ]
+]],
+// Provide the list name to the function
+$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.
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: