]> git.mxchange.org Git - friendica.git/blobdiff - mod/crepair.php
Change called method names
[friendica.git] / mod / crepair.php
index ef7908661b14cc94635e1ef74a11062abfbf462b..69efad24b0e1b7095af3941cc72cdc7002acfb69 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+
+use Friendica\App;
+use Friendica\Core\Config;
+use Friendica\Database\DBM;
+use Friendica\Object\Contact;
+
 require_once("include/contact_selectors.php");
 require_once("mod/contacts.php");
 
@@ -15,19 +21,18 @@ function crepair_init(App $a) {
                        intval(local_user()),
                        intval($contact_id)
                );
-               if (! dbm::is_result($r)) {
+               if (! DBM::is_result($r)) {
                        $contact_id = 0;
                }
        }
 
-       if (! x($a->page,'aside')) {
+       if(! x($a->page,'aside'))
                $a->page['aside'] = '';
-       }
 
-       if ($contact_id) {
+       if($contact_id) {
                $a->data['contact'] = $r[0];
                $contact = $r[0];
-               profile_load($a, "", 0, get_contact_details_by_url($contact["url"]));
+               profile_load($a, "", 0, Contact::getDetailsByURL($contact["url"]));
        }
 }
 
@@ -36,19 +41,16 @@ function crepair_post(App $a) {
                return;
        }
 
-       // Init $r here if $cid is not set
-       $r = false;
-
        $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
 
-       if ($cid) {
+       if($cid) {
                $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                        intval($cid),
                        intval(local_user())
                );
        }
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                return;
        }
 
@@ -82,18 +84,18 @@ function crepair_post(App $a) {
                local_user()
        );
 
-       if ($photo) {
+       if($photo) {
                logger('mod-crepair: updating photo from ' . $photo);
                require_once("include/Photo.php");
 
                update_contact_avatar($photo,local_user(),$contact['id']);
        }
 
-       if ($r) {
+       if($r)
                info( t('Contact settings applied.') . EOL);
-       } else {
+       else
                notice( t('Contact update failed.') . EOL);
-       }
+
 
        return;
 }
@@ -116,7 +118,7 @@ function crepair_content(App $a) {
                );
        }
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                notice( t('Contact not found.') . EOL);
                return;
        }
@@ -128,7 +130,7 @@ function crepair_content(App $a) {
 
        $returnaddr = "contacts/$cid";
 
-       $allow_remote_self = get_config('system','allow_users_remote_self');
+       $allow_remote_self = Config::get('system','allow_users_remote_self');
 
        // Disable remote self for everything except feeds.
        // There is an issue when you repeat an item from maybe twitter and you got comments from friendica and twitter