summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/digest/digest.php3
-rw-r--r--plugins/example/example.php3
-rw-r--r--plugins/example_feed/example_feed.php3
-rw-r--r--plugins/example_routing/example_routing.php3
-rw-r--r--plugins/instances/instances.php3
-rw-r--r--plugins/updater/updater.php3
6 files changed, 12 insertions, 6 deletions
diff --git a/plugins/digest/digest.php b/plugins/digest/digest.php
index d0cbd5b0f..cb906e3c1 100644
--- a/plugins/digest/digest.php
+++ b/plugins/digest/digest.php
@@ -7,7 +7,8 @@ class Digest extends Plugin implements IHandler {
function _about() {
return array(1.0,
"Digest mode for tt-rss (tablet friendly UI)",
- "fox");
+ "fox",
+ true);
}
function __construct($host) {
diff --git a/plugins/example/example.php b/plugins/example/example.php
index 42550b171..be6a48551 100644
--- a/plugins/example/example.php
+++ b/plugins/example/example.php
@@ -9,7 +9,8 @@ class Example extends Plugin {
function _about() {
return array(1.0,
"Example plugin #1",
- "fox");
+ "fox",
+ true);
}
function __construct($host) {
diff --git a/plugins/example_feed/example_feed.php b/plugins/example_feed/example_feed.php
index 205594edd..a0d6d19c7 100644
--- a/plugins/example_feed/example_feed.php
+++ b/plugins/example_feed/example_feed.php
@@ -10,7 +10,8 @@ class Example_Feed extends Plugin {
function _about() {
return array(1.0,
"Example feed plugin",
- "fox");
+ "fox",
+ true);
}
function __construct($host) {
diff --git a/plugins/example_routing/example_routing.php b/plugins/example_routing/example_routing.php
index 024bf5b22..f15951e08 100644
--- a/plugins/example_routing/example_routing.php
+++ b/plugins/example_routing/example_routing.php
@@ -18,7 +18,8 @@ class Example_Routing extends Plugin implements IHandler {
function _about() {
return array(1.0,
"Example routing plugin",
- "fox");
+ "fox",
+ true);
}
function __construct($host) {
diff --git a/plugins/instances/instances.php b/plugins/instances/instances.php
index fd80ee44d..2836bce5a 100644
--- a/plugins/instances/instances.php
+++ b/plugins/instances/instances.php
@@ -13,7 +13,8 @@ class Instances extends Plugin implements IHandler {
function _about() {
return array(1.0,
"Support for linking tt-rss instances together and sharing popular feeds.",
- "fox");
+ "fox",
+ true);
}
function __construct($host) {
diff --git a/plugins/updater/updater.php b/plugins/updater/updater.php
index c85ef3280..2148e3c01 100644
--- a/plugins/updater/updater.php
+++ b/plugins/updater/updater.php
@@ -7,7 +7,8 @@ class Updater extends Plugin {
function _about() {
return array(1.0,
"Updates tt-rss installation to latest version.",
- "fox");
+ "fox",
+ true);
}
function __construct($host) {