]> git.mxchange.org Git - friendica.git/blobdiff - mod/crepair.php
Class file relocations
[friendica.git] / mod / crepair.php
index 308d5b95e9d573ea990966225b4e02db897ee294..a73429e157e3f7b918c983d302a86b89bfb4d586 100644 (file)
@@ -1,10 +1,16 @@
 <?php
+
+use Friendica\App;
+use Friendica\Core\Config;
+use Friendica\Database\DBM;
+
 require_once("include/contact_selectors.php");
 require_once("mod/contacts.php");
 
-function crepair_init(App &$a) {
-       if(! local_user())
+function crepair_init(App $a) {
+       if (! local_user()) {
                return;
+       }
 
        $contact_id = 0;
 
@@ -14,7 +20,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;
                }
        }
@@ -29,10 +35,10 @@ function crepair_init(App &$a) {
        }
 }
 
-
-function crepair_post(App &$a) {
-       if(! local_user())
+function crepair_post(App $a) {
+       if (! local_user()) {
                return;
+       }
 
        $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
 
@@ -43,7 +49,7 @@ function crepair_post(App &$a) {
                );
        }
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                return;
        }
 
@@ -95,9 +101,9 @@ function crepair_post(App &$a) {
 
 
 
-function crepair_content(App &$a) {
+function crepair_content(App $a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -111,7 +117,7 @@ function crepair_content(App &$a) {
                );
        }
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                notice( t('Contact not found.') . EOL);
                return;
        }
@@ -123,7 +129,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