]> git.mxchange.org Git - friendica.git/blobdiff - mod/crepair.php
Merge pull request #3991 from MrPetovan/bug/undefined-variables
[friendica.git] / mod / crepair.php
index b4275f6baa2d4f2a709c57a25de218b6265778c8..7e1921f304124539d84a3114e5c6cbfd27c6b90b 100644 (file)
@@ -1,10 +1,19 @@
 <?php
-require_once("include/contact_selectors.php");
-require_once("mod/contacts.php");
-
-function crepair_init(&$a) {
-       if(! local_user())
+/**
+ * @file mod/crepair.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';
+
+function crepair_init(App $a) {
+       if (! local_user()) {
                return;
+       }
 
        $contact_id = 0;
 
@@ -14,7 +23,7 @@ function crepair_init(&$a) {
                        intval(local_user()),
                        intval($contact_id)
                );
-               if(! dbm::is_result($r)) {
+               if (! DBM::is_result($r)) {
                        $contact_id = 0;
                }
        }
@@ -25,14 +34,14 @@ function crepair_init(&$a) {
        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"]));
        }
 }
 
-
-function crepair_post(&$a) {
-       if(! local_user())
+function crepair_post(App $a) {
+       if (! local_user()) {
                return;
+       }
 
        $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
 
@@ -43,8 +52,9 @@ function crepair_post(&$a) {
                );
        }
 
-       if(! dbm::is_result($r))
+       if (! DBM::is_result($r)) {
                return;
+       }
 
        $contact = $r[0];
 
@@ -76,27 +86,26 @@ function crepair_post(&$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']);
+               Contact::updateAvatar($photo, local_user(), $contact['id']);
        }
 
-       if($r)
-               info( t('Contact settings applied.') . EOL);
-       else
-               notice( t('Contact update failed.') . EOL);
-
+       if ($r) {
+               info(t('Contact settings applied.') . EOL);
+       } else {
+               notice(t('Contact update failed.') . EOL);
+       }
 
        return;
 }
 
 
 
-function crepair_content(&$a) {
+function crepair_content(App $a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -110,7 +119,7 @@ function crepair_content(&$a) {
                );
        }
 
-       if(! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                notice( t('Contact not found.') . EOL);
                return;
        }
@@ -122,7 +131,7 @@ function crepair_content(&$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