X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fcontact_selectors.php;h=05059e3358abcfc92170569b8905979ddf4bb606;hb=217a8ce6ee8fd163d81c71044d9497646296862f;hp=ac1e38e4fe2666cb600d79ffa8f8ffce7925433a;hpb=5d474177113f563c5c4d299485e0edb27d061f8a;p=friendica.git diff --git a/include/contact_selectors.php b/include/contact_selectors.php index ac1e38e4fe..05059e3358 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -1,5 +1,5 @@ \r\n"; + $o .= "' . "\r\n"; + $o .= "\r\n"; return $o; } + + +function network_to_name($s, $profile = "") { + + $nets = array( + NETWORK_DFRN => t('Friendica'), + NETWORK_OSTATUS => t('OStatus'), + NETWORK_FEED => t('RSS/Atom'), + NETWORK_MAIL => t('Email'), + NETWORK_DIASPORA => t('Diaspora'), + NETWORK_FACEBOOK => t('Facebook'), + NETWORK_ZOT => t('Zot!'), + NETWORK_LINKEDIN => t('LinkedIn'), + NETWORK_XMPP => t('XMPP/IM'), + NETWORK_MYSPACE => t('MySpace'), + NETWORK_MAIL2 => t('Email'), + NETWORK_GPLUS => t('Google+'), + NETWORK_PUMPIO => t('pump.io'), + NETWORK_TWITTER => t('Twitter'), + NETWORK_DIASPORA2 => t('Diaspora Connector'), + NETWORK_STATUSNET => t('GNU Social Connector'), + NETWORK_PNUT => t('pnut'), + NETWORK_APPNET => t('App.net') + ); + + call_hooks('network_to_name', $nets); + + $search = array_keys($nets); + $replace = array_values($nets); + + $networkname = str_replace($search, $replace, $s); + + if ((in_array($s, array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) && ($profile != "")) { + $r = dba::fetch_first("SELECT `gserver`.`platform` FROM `gcontact` + INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url` + WHERE `gcontact`.`nurl` = ? AND `platform` != ''", normalise_link($profile)); + + if (dbm::is_result($r)) { + $networkname = $r['platform']; + } + } + + return $networkname; +}