]> git.mxchange.org Git - friendica.git/blobdiff - mod/crepair.php
Code cleanup
[friendica.git] / mod / crepair.php
index 2661deaeed9b0c8bb4b0ca99a5bc44ad4171d6b9..754078316fba9c0d9c5d99477a14e62348f2cdb5 100644 (file)
@@ -1,8 +1,14 @@
 <?php
-require_once("include/contact_selectors.php");
-require_once("mod/contacts.php");
 
-function crepair_init(App &$a) {
+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;
        }
@@ -15,7 +21,7 @@ function crepair_init(App &$a) {
                        intval(local_user()),
                        intval($contact_id)
                );
-               if (! dbm::is_result($r)) {
+               if (! DBM::is_result($r)) {
                        $contact_id = 0;
                }
        }
@@ -26,12 +32,11 @@ function crepair_init(App &$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(App &$a) {
+function crepair_post(App $a) {
        if (! local_user()) {
                return;
        }
@@ -45,7 +50,7 @@ function crepair_post(App &$a) {
                );
        }
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                return;
        }
 
@@ -97,7 +102,7 @@ function crepair_post(App &$a) {
 
 
 
-function crepair_content(App &$a) {
+function crepair_content(App $a) {
 
        if (! local_user()) {
                notice( t('Permission denied.') . EOL);
@@ -113,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;
        }
@@ -125,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