]> git.mxchange.org Git - friendica-addons.git/blobdiff - numfriends/numfriends.php
Merge pull request #484 from MrPetovan/task/4144-improve-twitter-settings
[friendica-addons.git] / numfriends / numfriends.php
old mode 100755 (executable)
new mode 100644 (file)
index 6ca7b39..98295bf
@@ -8,6 +8,7 @@
  *
  */
 
+use Friendica\Core\PConfig;
 
 function numfriends_install() {
 
@@ -42,7 +43,7 @@ function numfriends_settings_post($a,$post) {
        if(! local_user() || (! x($_POST,'numfriends-submit')))
                return;
 
-       set_pconfig(local_user(),'system','display_friend_count',intval($_POST['numfriends']));
+       PConfig::set(local_user(),'system','display_friend_count',intval($_POST['numfriends']));
        info( t('Numfriends settings updated.') . EOL);
 }
 
@@ -56,10 +57,11 @@ 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 */
 
@@ -67,9 +69,7 @@ function numfriends_settings(&$a,&$s) {
 
        /* Get the current state of our config variable */
 
-       $numfriends = get_pconfig(local_user(),'system','display_friend_count');
-       if($numfriends === false)
-               $numfriends = 24;
+       $numfriends = PConfig::get(local_user(), 'system', 'display_friend_count', 24);
        
        /* Add some HTML to the existing form */
 
@@ -82,6 +82,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('Submit') . '" /></div></div>';
-
+       $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="numfriends-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
 }