]> git.mxchange.org Git - friendica-addons.git/commitdiff
Replace addon "last" config entries with key-value entries
authorPhilipp <admin@philipp.info>
Thu, 29 Dec 2022 19:51:04 +0000 (20:51 +0100)
committerPhilipp <admin@philipp.info>
Thu, 29 Dec 2022 19:51:04 +0000 (20:51 +0100)
leistungsschutzrecht/leistungsschutzrecht.php
pumpio/pumpio.php
twitter/twitter.php

index 991b4f0f9a163168dbb3fa0a706e82ced5451a5f..0945df0e555a30bf8a929fd242b0ee10aa56425f 100644 (file)
@@ -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());
 }
index ce6465cd152a82773c0e2f772aeacd63df281107..b13d5faf272ee475f4b89420101cd94208eccfe1 100644 (file)
@@ -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)
index 04145d0aeda1c9f44e95804b531902fa0809c5de..2e7c1573e6ce90832d313469852f514b8f6f8bfb 100644 (file)
@@ -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)