From: Philipp <admin@philipp.info>
Date: Thu, 29 Dec 2022 19:51:04 +0000 (+0100)
Subject: Replace addon "last" config entries with key-value entries
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=73189581b082b71e15d25fba268ba7d33d3909f6;p=friendica-addons.git

Replace addon "last" config entries with key-value entries
---

diff --git a/leistungsschutzrecht/leistungsschutzrecht.php b/leistungsschutzrecht/leistungsschutzrecht.php
index 991b4f0f..0945df0e 100644
--- a/leistungsschutzrecht/leistungsschutzrecht.php
+++ b/leistungsschutzrecht/leistungsschutzrecht.php
@@ -164,7 +164,7 @@ function leistungsschutzrecht_is_member_site(string $url): bool
 
 function leistungsschutzrecht_cron(App $a, $b)
 {
-	$last = DI::config()->get('leistungsschutzrecht', 'last_poll');
+	$last = DI::keyValue()->get('leistungsschutzrecht_last_poll');
 
 	if ($last) {
 		$next = $last + 86400;
@@ -174,5 +174,5 @@ function leistungsschutzrecht_cron(App $a, $b)
 		}
 	}
 	leistungsschutzrecht_fetchsites();
-	DI::config()->set('leistungsschutzrecht', 'last_poll', time());
+	DI::keyValue()->set('leistungsschutzrecht_last_poll', time());
 }
diff --git a/pumpio/pumpio.php b/pumpio/pumpio.php
index ce6465cd..b13d5faf 100644
--- a/pumpio/pumpio.php
+++ b/pumpio/pumpio.php
@@ -631,7 +631,7 @@ function pumpio_sync(App $a)
 		return;
 	}
 
-	$last = DI::config()->get('pumpio', 'last_poll');
+	$last = DI::keyValue()->get('pumpio_last_poll');
 
 	$poll_interval = intval(DI::config()->get('pumpio', 'poll_interval', PUMPIO_DEFAULT_POLL_INTERVAL));
 
@@ -685,7 +685,7 @@ function pumpio_sync(App $a)
 
 	Logger::notice('pumpio: cron_end');
 
-	DI::config()->set('pumpio', 'last_poll', time());
+	DI::keyValue()->set('pumpio_last_poll', time());
 }
 
 function pumpio_cron(App $a, $b)
diff --git a/twitter/twitter.php b/twitter/twitter.php
index 04145d0a..2e7c1573 100644
--- a/twitter/twitter.php
+++ b/twitter/twitter.php
@@ -999,7 +999,7 @@ function twitter_addon_admin(App $a, string &$o)
 
 function twitter_cron(App $a)
 {
-	$last = DI::config()->get('twitter', 'last_poll');
+	$last = DI::keyValue()->get('twitter_last_poll');
 
 	$poll_interval = intval(DI::config()->get('twitter', 'poll_interval'));
 	if (!$poll_interval) {
@@ -1057,7 +1057,7 @@ function twitter_cron(App $a)
 
 	Logger::notice('twitter: cron_end');
 
-	DI::config()->set('twitter', 'last_poll', time());
+	DI::keyValue()->set('twitter_last_poll', time());
 }
 
 function twitter_expire(App $a)