]> git.mxchange.org Git - friendica-addons.git/blobdiff - numfriends/numfriends.php
Revert to stable version 3.5.4
[friendica-addons.git] / numfriends / numfriends.php
index 98295bfbb2e332b8cdc3d298c1ddf8ad01cebaf0..2f48a0d7d369926412f381b7b9854a8f5ad5594c 100644 (file)
@@ -8,7 +8,6 @@
  *
  */
 
-use Friendica\Core\PConfig;
 
 function numfriends_install() {
 
@@ -43,7 +42,7 @@ function numfriends_settings_post($a,$post) {
        if(! local_user() || (! x($_POST,'numfriends-submit')))
                return;
 
-       PConfig::set(local_user(),'system','display_friend_count',intval($_POST['numfriends']));
+       set_pconfig(local_user(),'system','display_friend_count',intval($_POST['numfriends']));
        info( t('Numfriends settings updated.') . EOL);
 }
 
@@ -57,11 +56,10 @@ function numfriends_settings_post($a,$post) {
 
 
 
-function numfriends_settings(&$a, &$s)
-{
-       if (! local_user()) {
+function numfriends_settings(&$a,&$s) {
+
+       if(! local_user())
                return;
-       }
 
        /* Add our stylesheet to the page so we can make our settings look nice */
 
@@ -69,7 +67,9 @@ function numfriends_settings(&$a, &$s)
 
        /* Get the current state of our config variable */
 
-       $numfriends = PConfig::get(local_user(), 'system', 'display_friend_count', 24);
+       $numfriends = get_pconfig(local_user(),'system','display_friend_count');
+       if($numfriends === false)
+               $numfriends = 24;
        
        /* Add some HTML to the existing form */
 
@@ -83,4 +83,5 @@ function numfriends_settings(&$a, &$s)
        /* provide a submit button */
 
        $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="numfriends-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
+
 }