]> git.mxchange.org Git - friendica-addons.git/blobdiff - notimeline/notimeline.php
IT translation update blackout addon THX Sylke Vicious
[friendica-addons.git] / notimeline / notimeline.php
index afb30fb5ac8e94d83a5496734a3dfd23c5b907b1..b99501c3a3b3876f7fb9f11ab86e57828ccb9fd0 100644 (file)
@@ -8,7 +8,6 @@
  *
  */
 use Friendica\Core\Hook;
-use Friendica\Core\L10n;
 use Friendica\DI;
 
 function notimeline_install()
@@ -17,12 +16,6 @@ function notimeline_install()
        Hook::register('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
 }
 
-function notimeline_uninstall()
-{
-       Hook::unregister('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
-       Hook::unregister('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
-}
-
 function notimeline_settings_post($a, $post)
 {
        if (!local_user() || empty($_POST['notimeline-submit'])) {
@@ -30,7 +23,6 @@ function notimeline_settings_post($a, $post)
        }
 
        DI::pConfig()->set(local_user(), 'system', 'no_wall_archive_widget', intval($_POST['notimeline']));
-       info(L10n::t('No Timeline settings updated.') . EOL);
 }
 
 function notimeline_settings(&$a, &$s)
@@ -53,13 +45,13 @@ function notimeline_settings(&$a, &$s)
        /* Add some HTML to the existing form */
 
        $s .= '<div class="settings-block">';
-       $s .= '<h3>' . L10n::t('No Timeline Settings') . '</h3>';
+       $s .= '<h3>' . DI::l10n()->t('No Timeline Settings') . '</h3>';
        $s .= '<div id="notimeline-wrapper">';
-       $s .= '<label id="notimeline-label" for="notimeline-checkbox">' . L10n::t('Disable Archive selector on profile wall') . '</label>';
+       $s .= '<label id="notimeline-label" for="notimeline-checkbox">' . DI::l10n()->t('Disable Archive selector on profile wall') . '</label>';
        $s .= '<input id="notimeline-checkbox" type="checkbox" name="notimeline" value="1" ' . $notimeline_checked . '/>';
        $s .= '</div><div class="clear"></div>';
 
        /* provide a submit button */
 
-       $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="notimeline-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div></div>';
+       $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="notimeline-submit" class="settings-submit" value="' . DI::l10n()->t('Save Settings') . '" /></div></div>';
 }