]> git.mxchange.org Git - friendica-addons.git/blobdiff - facebook/facebook.php
abandoned account feature
[friendica-addons.git] / facebook / facebook.php
index 7ffdaffac52a3f8d41d1b344828e4c587d4b9e7d..0205204afd65ca88936be4309c49605b492fe0b6 100644 (file)
@@ -428,6 +428,16 @@ function facebook_cron($a,$b) {
                foreach($r as $rr) {
                        if(get_pconfig($rr['uid'],'facebook','no_linking'))
                                continue;
+                       $ab = intval(get_config('system','account_abandon_days'));
+                       if($ab > 0) {
+                               $z = q("SELECT `uid` FROM `user` WHERE `uid` = %d AND `login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY LIMIT 1",
+                                       intval($rr['uid']),
+                                       intval($ab)
+                               );
+                               if(! count($z))
+                                       continue;
+                       }
+
                        // check for new friends once a day
                        $last_friend_check = get_pconfig($rr['uid'],'facebook','friend_check');
                        if($last_friend_check)