]> 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 adba95c5c7a1d04b1d206c6dc619c58da0bc288d..b99501c3a3b3876f7fb9f11ab86e57828ccb9fd0 100644 (file)
@@ -7,20 +7,13 @@
  * Status: Unsupported
  *
  */
-use Friendica\Core\Addon;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
+use Friendica\Core\Hook;
+use Friendica\DI;
 
 function notimeline_install()
 {
-       Addon::registerHook('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
-       Addon::registerHook('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
-}
-
-function notimeline_uninstall()
-{
-       Addon::unregisterHook('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
-       Addon::unregisterHook('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
+       Hook::register('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
+       Hook::register('addon_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
 }
 
 function notimeline_settings_post($a, $post)
@@ -29,8 +22,7 @@ function notimeline_settings_post($a, $post)
                return;
        }
 
-       PConfig::set(local_user(), 'system', 'no_wall_archive_widget', intval($_POST['notimeline']));
-       info(L10n::t('No Timeline settings updated.') . EOL);
+       DI::pConfig()->set(local_user(), 'system', 'no_wall_archive_widget', intval($_POST['notimeline']));
 }
 
 function notimeline_settings(&$a, &$s)
@@ -41,11 +33,11 @@ function notimeline_settings(&$a, &$s)
 
        /* Add our stylesheet to the page so we can make our settings look nice */
 
-       $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->getBaseURL() . '/addon/notimeline/notimeline.css' . '" media="all" />' . "\r\n";
+       DI::page()['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . DI::baseUrl()->get() . '/addon/notimeline/notimeline.css' . '" media="all" />' . "\r\n";
 
        /* Get the current state of our config variable */
 
-       $notimeline = PConfig::get(local_user(), 'system', 'no_wall_archive_widget', false);
+       $notimeline = DI::pConfig()->get(local_user(), 'system', 'no_wall_archive_widget', false);
 
        $notimeline_checked = (($notimeline) ? ' checked="checked" ' : '');
 
@@ -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>';
 }