]> git.mxchange.org Git - friendica-addons.git/blobdiff - notimeline/notimeline.php
Addon class
[friendica-addons.git] / notimeline / notimeline.php
index c2bca211beb398479e7c36c23f514c858d81011e..bc06f78bd36e5ae971abf11d0649e05106ee38fd 100644 (file)
@@ -7,19 +7,20 @@
  * 
  *
  */
-
+use Friendica\Core\Addon;
+use Friendica\Core\PConfig;
 
 function notimeline_install() {
 
-       register_hook('plugin_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
-       register_hook('plugin_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
+       Addon::registerHook('plugin_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
+       Addon::registerHook('plugin_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
 
 }
 
 
 function notimeline_uninstall() {
-       unregister_hook('plugin_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
-       unregister_hook('plugin_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
+       Addon::unregisterHook('plugin_settings', 'addon/notimeline/notimeline.php', 'notimeline_settings');
+       Addon::unregisterHook('plugin_settings_post', 'addon/notimeline/notimeline.php', 'notimeline_settings_post');
 
 }
 
@@ -28,14 +29,15 @@ function notimeline_settings_post($a,$post) {
        if(! local_user() || (! x($_POST,'notimeline-submit')))
                return;
 
-       set_pconfig(local_user(),'system','no_wall_archive_widget',intval($_POST['notimeline']));
+       PConfig::set(local_user(),'system','no_wall_archive_widget',intval($_POST['notimeline']));
        info( t('No Timeline settings updated.') . EOL);
 }
 
-function notimeline_settings(&$a,&$s) {
-
-       if(! local_user())
+function notimeline_settings(&$a, &$s)
+{
+       if (! local_user()) {
                return;
+       }
 
        /* Add our stylesheet to the page so we can make our settings look nice */
 
@@ -43,9 +45,7 @@ function notimeline_settings(&$a,&$s) {
 
        /* Get the current state of our config variable */
 
-       $notimeline = get_pconfig(local_user(),'system','no_wall_archive_widget');
-       if($notimeline === false)
-               $notimeline = false;
+       $notimeline = PConfig::get(local_user(), 'system', 'no_wall_archive_widget', false);
 
        $notimeline_checked = (($notimeline) ? ' checked="checked" ' : '');
 
@@ -62,5 +62,4 @@ function notimeline_settings(&$a,&$s) {
        /* provide a submit button */
 
        $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="notimeline-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
-
 }