]> git.mxchange.org Git - friendica-addons.git/blobdiff - blackout/blackout.php
markdown addon DE translation updated
[friendica-addons.git] / blackout / blackout.php
index aee5acc76ed7d197d10ee6c9e068f89ca719ca31..cfe4bbb71966c295bdcafa5e8099775a14da5b6e 100644 (file)
@@ -44,7 +44,6 @@
  * THE SOFTWARE.
  */
 
-use Friendica\Core\Config;
 use Friendica\Core\Hook;
 use Friendica\Core\Logger;
 use Friendica\Core\Renderer;
@@ -55,9 +54,6 @@ function blackout_install() {
        Hook::register('page_header', 'addon/blackout/blackout.php', 'blackout_redirect');
 }
 
-function blackout_uninstall() {
-       Hook::unregister('page_header', 'addon/blackout/blackout.php', 'blackout_redirect');
-}
 function blackout_redirect ($a, $b) {
        // if we have a logged in user, don't throw her out
        if (local_user()) {
@@ -98,24 +94,24 @@ function blackout_addon_admin(&$a, &$o) {
        // a note for the admin
        $adminnote = "";
        if ($date2 < $date1) {
-               $adminnote = DI::l10n()->t("The end-date is prior to the start-date of the blackout, you should fix this");
+               $adminnote = DI::l10n()->t("The end-date is prior to the start-date of the blackout, you should fix this.");
        } else {
-               $adminnote = DI::l10n()->t("Please double check that the current settings for the blackout. Begin will be <strong>%s</strong> and it will end <strong>%s</strong>.", $mystart, $myend);
+               $adminnote = DI::l10n()->t("Please double check the current settings for the blackout. It will begin on <strong>%s</strong> and end on <strong>%s</strong>.", $mystart, $myend);
        }
        $o = Renderer::replaceMacros($t, [
                '$submit' => DI::l10n()->t('Save Settings'),
-               '$rurl' => ["rurl", DI::l10n()->t("Redirect URL"), $myurl, DI::l10n()->t("all your visitors from the web will be redirected to this URL"), "", "", "url"],
+               '$rurl' => ["rurl", DI::l10n()->t("Redirect URL"), $myurl, DI::l10n()->t("All your visitors from the web will be redirected to this URL."), "", "", "url"],
                '$startdate' => ["startdate", DI::l10n()->t("Begin of the Blackout"), $mystart, DI::l10n()->t("Format is <tt>YYYY-MM-DD hh:mm</tt>; <em>YYYY</em> year, <em>MM</em> month, <em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute.")],
                '$enddate' => ["enddate", DI::l10n()->t("End of the Blackout"), $myend, ""],
                '$adminnote' => $adminnote,
-               '$aboutredirect' => DI::l10n()->t("<strong>Note</strong>: The redirect will be active from the moment you press the submit button. Users currently logged in will <strong>not</strong> be thrown out but can't login again after logging out should the blackout is still in place."),
+               '$aboutredirect' => DI::l10n()->t("<strong>Note</strong>: The redirect will be active from the moment you press the submit button. Users currently logged in will <strong>not</strong> be thrown out but can't login again after logging out while the blackout is still in place."),
        ]);
 }
 function blackout_addon_admin_post (&$a) {
        $begindate = trim($_POST['startdate']);
        $enddate = trim($_POST['enddate']);
        $url = trim($_POST['rurl']);
-       Config::set('blackout','begindate',$begindate);
-       Config::set('blackout','enddate',$enddate);
-       Config::set('blackout','url',$url);
+       DI::config()->set('blackout','begindate',$begindate);
+       DI::config()->set('blackout','enddate',$enddate);
+       DI::config()->set('blackout','url',$url);
 }