Buffer SV translation added THX Bjoessi
[friendica-addons.git/.git] / notimeline / notimeline.php
index 9378287..d8d6b2a 100644 (file)
@@ -4,27 +4,28 @@
  * Description: Disable "Archives" widget on profile page
  * Version: 1.0
  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
+ * Status: Unsupported
  *
  */
-use Friendica\Core\Addon;
+use Friendica\Core\Hook;
 use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
 
 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');
+       Hook::register('addon_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
+       Hook::register('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::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() || (!x($_POST, 'notimeline-submit'))) {
+       if (!local_user() || empty($_POST['notimeline-submit'])) {
                return;
        }
 
@@ -40,7 +41,7 @@ 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->get_baseurl() . '/addon/notimeline/notimeline.css' . '" media="all" />' . "\r\n";
+       $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->getBaseURL() . '/addon/notimeline/notimeline.css' . '" media="all" />' . "\r\n";
 
        /* Get the current state of our config variable */