diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index 66b49bcf..bc29d643 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -100,7 +100,7 @@
For information on how to read parameter values during execution, please refer to the getInput function.
Parameters are specified as part of the bridge class. An empty list of parameters is defined as const PARAMETERS = array();
Parameters are specified as part of the bridge class. An empty list of parameters is defined as const PARAMETERS = [];
<?PHP
class MyBridge extends BridgeAbstract {
/* ... */
- const PARAMETERS = array(); // Empty list of parameters (can be omitted)
+ const PARAMETERS = []; // Empty list of parameters (can be omitted)
/* ... */
}
@@ -223,36 +223,39 @@ class MyBridge extends BridgeAbstract {
A context is defined as a associative array of parameters. The name of a context is displayed by RSS-Bridge.
const PARAMETERS = array(
- 'My Context 1' => array(),
- 'My Context 2' => array()
-);
+const PARAMETERS = [
+ 'My Context 1' => [],
+ 'My Context 2' => [],
+];
Output

Notice: The name of a context can be left empty if only one context is needed!
const PARAMETERS = array(
- array()
-);
+const PARAMETERS = [
+ []
+];
You can also define a set of parameters that will be applied to every possible context of your bridge. To do this, specify a context named global
.
const PARAMETERS = array(
- 'global' => array() // Applies to all contexts!
-);
+const PARAMETERS = [
+ 'global' => [] // Applies to all contexts!
+];
Parameters are placed inside a context. They are defined as associative array of parameter specifications. Each parameter is defined by it’s internal input name, a definition in the form 'n' => array();
, where n
is the name with which the bridge can access the parameter during execution.
Parameters are placed inside a context.
+They are defined as associative array of parameter specifications.
+Each parameter is defined by it’s internal input name, a definition in the form 'n' => [];
,
+where n
is the name with which the bridge can access the parameter during execution.
const PARAMETERS = array(
- 'My Context' => array(
- 'n' => array()
- )
-);
+const PARAMETERS = [
+ 'My Context' => [
+ 'n' => []
+ ]
+];
The parameter specification consists of various fields, listed in the table below.
@@ -414,7 +417,7 @@ It provides a way to identify which context the bridge is called with.Elements collected by this function must be stored in $this->items
. The items
variable is an array of item elements, each of which is an associative array that may contain arbitrary keys. RSS-Bridge specifies common keys which are used to generate most common feed formats.
-$item = array(); // Create a new item
+$item = []; // Create a new item
$item['title'] = 'Hello World!';
@@ -480,7 +483,7 @@ $item['uid'] // A unique ID to identify the current item
&& preg_match($regex, $url, $urlMatches) > 0
&& preg_match($regex, static::URI, $bridgeUriMatches) > 0
&& $urlMatches[3] === $bridgeUriMatches[3]) {
- return array();
+ return [];
} else {
return null;
}
diff --git a/Bridge_API/FeedExpander.html b/Bridge_API/FeedExpander.html
index dbf456af..79b40b70 100644
--- a/Bridge_API/FeedExpander.html
+++ b/Bridge_API/FeedExpander.html
@@ -100,7 +100,7 @@
Bridge API FeedExpander
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
@@ -239,10 +239,11 @@ class MySiteBridge extends FeedExpander {
const NAME = 'Unnamed bridge';
const URI = '';
const DESCRIPTION = 'No description provided';
- const PARAMETERS = array();
+ const PARAMETERS = [];
const CACHE_TIMEOUT = 3600;
- public function collectData(){
+ public function collectData()
+ {
$this->collectExpandableDatas('your feed URI');
}
}
diff --git a/Bridge_API/How_to_create_a_new_bridge.html b/Bridge_API/How_to_create_a_new_bridge.html
index 2b1bcdbf..29189777 100644
--- a/Bridge_API/How_to_create_a_new_bridge.html
+++ b/Bridge_API/How_to_create_a_new_bridge.html
@@ -100,7 +100,7 @@
Bridge API How to create a new bridge
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Bridge_API/XPathAbstract.html b/Bridge_API/XPathAbstract.html
index 33c2815e..aee87a3b 100644
--- a/Bridge_API/XPathAbstract.html
+++ b/Bridge_API/XPathAbstract.html
@@ -100,7 +100,7 @@
Bridge API XPathAbstract
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Bridge_API/index.html b/Bridge_API/index.html
index 30c4a069..c4866dfe 100644
--- a/Bridge_API/index.html
+++ b/Bridge_API/index.html
@@ -100,7 +100,7 @@
Bridge API
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
@@ -108,7 +108,11 @@
- A Bridge is an class that allows RSS-Bridge to create an RSS-feed from a website. A Bridge represents one element on the Welcome screen and covers one or more sites to return feeds for. It is developed in a PHP file located in the bridges/
folder (see Folder structure) and extends one of the base classes of RSS-Bridge:
+ A Bridge is a class that allows RSS-Bridge to create an RSS-feed from a website.
+A Bridge represents one element on the Welcome screen
+and covers one or more sites to return feeds for.
+It is developed in a PHP file located in the bridges/
folder (see Folder structure)
+and extends one of the base classes of RSS-Bridge:
diff --git a/Bridge_Specific/ActivityPub_(Mastodon).html b/Bridge_Specific/ActivityPub_(Mastodon).html
index a33501d7..15676cf6 100644
--- a/Bridge_Specific/ActivityPub_(Mastodon).html
+++ b/Bridge_Specific/ActivityPub_(Mastodon).html
@@ -100,7 +100,7 @@
Bridge Specific ActivityPub (Mastodon)
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Bridge_Specific/FacebookBridge.html b/Bridge_Specific/FacebookBridge.html
index ee9deaae..35f9649d 100644
--- a/Bridge_Specific/FacebookBridge.html
+++ b/Bridge_Specific/FacebookBridge.html
@@ -100,7 +100,7 @@
Bridge Specific FacebookBridge
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Bridge_Specific/FurAffinityBridge.html b/Bridge_Specific/FurAffinityBridge.html
index 2aa7d63a..44e038ca 100644
--- a/Bridge_Specific/FurAffinityBridge.html
+++ b/Bridge_Specific/FurAffinityBridge.html
@@ -100,7 +100,7 @@
Bridge Specific FurAffinityBridge
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Bridge_Specific/Furaffinityuser.html b/Bridge_Specific/Furaffinityuser.html
index 8635582f..4e87fc73 100644
--- a/Bridge_Specific/Furaffinityuser.html
+++ b/Bridge_Specific/Furaffinityuser.html
@@ -100,7 +100,7 @@
Bridge Specific Furaffinityuser
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Bridge_Specific/Instagram.html b/Bridge_Specific/Instagram.html
index bca87ae8..9a97044d 100644
--- a/Bridge_Specific/Instagram.html
+++ b/Bridge_Specific/Instagram.html
@@ -100,7 +100,7 @@
Bridge Specific Instagram
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Bridge_Specific/PixivBridge.html b/Bridge_Specific/PixivBridge.html
index d9b4cd06..41526c7c 100644
--- a/Bridge_Specific/PixivBridge.html
+++ b/Bridge_Specific/PixivBridge.html
@@ -100,7 +100,7 @@
Bridge Specific PixivBridge
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Bridge_Specific/TwitterV2.html b/Bridge_Specific/TwitterV2.html
index ed9d2b95..aec6ccc2 100644
--- a/Bridge_Specific/TwitterV2.html
+++ b/Bridge_Specific/TwitterV2.html
@@ -100,7 +100,7 @@
Bridge Specific TwitterV2
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/CLI/index.html b/CLI/index.html
index c8227dca..2858301b 100644
--- a/CLI/index.html
+++ b/CLI/index.html
@@ -100,7 +100,7 @@
CLI
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Cache_API/CacheInterface.html b/Cache_API/CacheInterface.html
index 5dbfd3d3..6ace05ed 100644
--- a/Cache_API/CacheInterface.html
+++ b/Cache_API/CacheInterface.html
@@ -100,7 +100,7 @@
Cache API CacheInterface
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Cache_API/How_to_create_a_new_cache.html b/Cache_API/How_to_create_a_new_cache.html
index 2e04847b..5d65654a 100644
--- a/Cache_API/How_to_create_a_new_cache.html
+++ b/Cache_API/How_to_create_a_new_cache.html
@@ -100,7 +100,7 @@
Cache API How to create a new cache
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
diff --git a/Cache_API/index.html b/Cache_API/index.html
index 6147170c..1dfed550 100644
--- a/Cache_API/index.html
+++ b/Cache_API/index.html
@@ -100,7 +100,7 @@
Cache API
- September 14, 2023 at 4:58 PM
+ September 19, 2023 at 5:46 PM
Edit on GitHub
@@ -108,8 +108,11 @@
- A Cache is a class that allows RSS-Bridge to store fetched data in a local storage area on the server. Cache imlementations are placed in the caches/
folder (see Folder structure). A cache must implement the CacheInterface
interface.
-For more information about how to create a new Cache
, read How to create a new cache?
+ A Cache is a class that allows RSS-Bridge to store fetched data in a local storage area on the server.
+Cache imlementations are placed in the caches/
folder (see Folder structure).
+A cache must implement the CacheInterface
interface.
+For more information about how to create a new Cache
, read
+How to create a new cache?