1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-12 11:34:09 +02:00

bridges: Update bridges with 'required' attributes

This commit is contained in:
logmanoriginal
2016-08-15 01:19:16 +02:00
parent c689180fef
commit fa59a25229
13 changed files with 35 additions and 35 deletions

View File

@@ -7,7 +7,7 @@ class TwitterBridge extends BridgeAbstract{
$this->name = "Twitter Bridge";
$this->uri = "https://twitter.com/";
$this->description = "Returns tweets by keyword/hashtag or user name";
$this->update = "2016-08-10";
$this->update = "2016-08-15";
$this->parameters["global"] =
'[
@@ -15,7 +15,7 @@ class TwitterBridge extends BridgeAbstract{
"name" : "Hide profile pictures",
"identifier" : "pic",
"type" : "checkbox",
"required" : "false",
"required" : false,
"exampleValue" : "checked",
"title" : "Activate to hide profile pictures in content"
}
@@ -27,7 +27,7 @@ class TwitterBridge extends BridgeAbstract{
"name" : "Keyword or #hashtag",
"identifier" : "q",
"type" : "text",
"required" : "true",
"required" : true,
"exampleValue" : "rss-bridge, #rss-bridge",
"title" : "Insert a keyword or hashtag"
}
@@ -39,7 +39,7 @@ class TwitterBridge extends BridgeAbstract{
"name" : "username",
"identifier" : "u",
"type" : "text",
"required" : "true",
"required" : true,
"exampleValue" : "sebsauvage",
"title" : "Insert a user name"
}