From db2e4a2871ddd2ae7703e3f833a48342e097a8c5 Mon Sep 17 00:00:00 2001 From: Leon Haag-Fank Date: Mon, 4 Dec 2023 18:34:31 +0100 Subject: [PATCH] Added named feed list to configuration --- configure.phtml | 26 ++++++++++++++++++++------ extension.php | 10 ++++++++-- i18n/en/ext.php | 2 +- 3 files changed, 29 insertions(+), 9 deletions(-) diff --git a/configure.phtml b/configure.phtml index 6f3eb8d..1c208fb 100644 --- a/configure.phtml +++ b/configure.phtml @@ -31,12 +31,6 @@ -
- -
- -
-
@@ -49,6 +43,26 @@
+
+ : + listFeeds() as $feed) { + $fid = $feed->id(); + $fname = $feed->name(); + if (is_array(FreshRSS_Context::$user_conf->wallabag_feeds)) { + $fchecked = in_array("$fid", FreshRSS_Context::$user_conf->wallabag_feeds) ? 'checked' : ''; + } else { + $fchecked = ''; + } + echo '
'; + echo ""; + echo '
'; + echo ""; + echo '
'; + } + ?> +
diff --git a/extension.php b/extension.php index e5a4119..450f222 100644 --- a/extension.php +++ b/extension.php @@ -30,9 +30,15 @@ class WallabagExtension extends Minz_Extension { FreshRSS_Context::$user_conf->wallabag_client_secret = Minz_Request::param('wallabag_client_secret'); FreshRSS_Context::$user_conf->wallabag_username = Minz_Request::param('wallabag_username'); FreshRSS_Context::$user_conf->wallabag_password = Minz_Request::param('wallabag_password'); - FreshRSS_Context::$user_conf->wallabag_feeds = Minz_Request::param('wallabag_feeds', ''); FreshRSS_Context::$user_conf->wallabag_use_tags = Minz_Request::param('wallabag_use_tags', ''); FreshRSS_Context::$user_conf->wallabag_add_tags = Minz_Request::param('wallabag_add_tags', ''); + + $wallabag_feeds = Minz_Request::paramArray('wallabag_feeds'); + if (empty($wallabag_feeds)) { + $wallabag_feeds = array(Minz_Request::param('wallabag_feeds')); + } + FreshRSS_Context::$user_conf->wallabag_feeds = $wallabag_feeds; + FreshRSS_Context::$user_conf->save(); } } @@ -70,7 +76,7 @@ class WallabagExtension extends Minz_Extension { if (is_null($endpoint)) { return $entry; } - $feeds = explode(',', FreshRSS_Context::$user_conf->wallabag_feeds); + $feeds = FreshRSS_Context::$user_conf->wallabag_feeds; $use_tags = FreshRSS_Context::$user_conf->wallabag_use_tags; $add_tags = explode(',', FreshRSS_Context::$user_conf->wallabag_add_tags); diff --git a/i18n/en/ext.php b/i18n/en/ext.php index 3b0348f..99c61f2 100644 --- a/i18n/en/ext.php +++ b/i18n/en/ext.php @@ -7,7 +7,7 @@ return array( 'client_secret' => 'Wallabag Client Secret', 'username' => 'Wallabag Username', 'password' => 'Wallabag Password', - 'feeds' => 'Feed IDs (comma seperated)', + 'feeds' => 'Feeds', 'use_tags' => 'Use tags?', 'add_tags' => 'Additional tags (comma seperated)', ),