]> git.mxchange.org Git - friendica.git/blobdiff - mod/hovercard.php
PortableContact created
[friendica.git] / mod / hovercard.php
index 26c60625195dbbd73fb322cf35e64b60acb4b41c..a5a41e26357756b6c0bf9e389fffb436ee5def2a 100644 (file)
@@ -9,9 +9,10 @@
  */
 
 use Friendica\App;
+use Friendica\Core\Config;
+use Friendica\Model\GlobalContact;
 
-require_once("include/socgraph.php");
-require_once("include/Contact.php");
+require_once "include/Contact.php";
 
 function hovercard_init(App $a) {
        // Just for testing purposes
@@ -23,7 +24,7 @@ function hovercard_content() {
        $datatype       =       (x($_REQUEST,'datatype')        ?$_REQUEST['datatype']          : "json");
 
        // Get out if the system doesn't have public access allowed
-       if(intval(get_config('system','block_public')))
+       if(intval(Config::get('system','block_public')))
                http_status_exit(401);
 
        // Return the raw content of the template. We use this to make templates usable for js functions.
@@ -47,7 +48,7 @@ function hovercard_content() {
        }
 
        // if it's the url containing https it should be converted to http
-       $nurl = normalise_link(clean_contact_url($profileurl));
+       $nurl = normalise_link(GlobalContact::cleanContactUrl($profileurl));
        if($nurl) {
                // Search for contact data
                $contact = get_contact_details_by_url($nurl);