From de612e7a3850d3053c7038e94098c0681d46983b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 25 Dec 2012 00:45:10 +0400 Subject: experimental support for per-user plugins (bump schema) --- plugins/digest/digest.php | 3 ++- plugins/example/example.php | 3 ++- plugins/example_feed/example_feed.php | 3 ++- plugins/example_routing/example_routing.php | 3 ++- plugins/instances/instances.php | 3 ++- plugins/updater/updater.php | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) (limited to 'plugins') 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) { -- cgit v1.2.3-54-g00ecf