X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhovercard.php;h=ec749db2088fbcfa1816185a0e198debd679e086;hb=da30538a980264da72a7c370013e60b2cb55aafa;hp=f5c410e11169875152cde20eae67bba0799a9935;hpb=98f7c73d107a291ff8918d14ac0347e6d7d78ad0;p=friendica.git diff --git a/mod/hovercard.php b/mod/hovercard.php index f5c410e111..ec749db208 100644 --- a/mod/hovercard.php +++ b/mod/hovercard.php @@ -11,7 +11,7 @@ require_once("include/socgraph.php"); require_once("include/Contact.php"); -function hovercard_init(&$a) { +function hovercard_init(App $a) { // Just for testing purposes $_GET["mode"] = "minimal"; } @@ -48,11 +48,6 @@ function hovercard_content() { if($nurl) { // Search for contact data $contact = get_contact_details_by_url($nurl); - - // Get_contact_details_by_url() doesn't provide the nurl but we - // need it for the photo_menu, so we copy it to the contact array - if (!isset($contact["nurl"])) - $contact["nurl"] = $nurl; } if(!is_array($contact)) @@ -69,7 +64,7 @@ function hovercard_content() { 'name' => $contact["name"], 'nick' => $contact["nick"], 'addr' => (($contact["addr"] != "") ? $contact["addr"] : $contact["url"]), - 'thumb' => proxy_url($contact["photo"], false, PROXY_SIZE_THUMB), + 'thumb' => proxy_url($contact["thumb"], false, PROXY_SIZE_THUMB), 'url' => ($cid ? ("redir/".$cid) : zrl($contact["url"])), 'nurl' => $contact["nurl"], // We additionally store the nurl as identifier // 'alias' => $contact["alias"], @@ -77,15 +72,14 @@ function hovercard_content() { 'gender' => $contact["gender"], 'about' => $contact["about"], 'network' => format_network_name($contact["network"], $contact["url"]), - 'tags' => intval($contact["keywords"]), + 'tags' => $contact["keywords"], // 'nsfw' => intval($contact["nsfw"]), // 'server_url' => $contact["server_url"], 'bd' => (($contact["birthday"] == "0000-00-00") ? "" : $contact["birthday"]), // 'generation' => $contact["generation"], - 'account_type' => ($contact['community'] ? t("Forum") : ""), + 'account_type' => account_type($contact), 'actions' => $actions, ); - if($datatype == "html") { $t = get_markup_template("hovercard.tpl"); @@ -102,10 +96,10 @@ function hovercard_content() { /** * @brief Get the raw content of a template file - * + * * @param string $template The name of the template * @param string $root Directory of the template - * + * * @return string|bool Output the raw content if existent, otherwise false */ function get_template_content($template, $root = "") {