friendica/include/contact_selectors.php

116 lines
3.0 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
2015-07-16 10:09:59 +02:00
require_once('include/diaspora.php');
2010-07-02 01:48:07 +02:00
2010-10-27 04:01:16 +02:00
function contact_profile_assign($current,$foreign_net) {
2010-07-02 01:48:07 +02:00
$o = '';
2010-10-27 04:01:16 +02:00
$disabled = (($foreign_net) ? ' disabled="true" ' : '');
$o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" />\r\n";
2010-07-02 01:48:07 +02:00
2010-07-11 08:03:54 +02:00
$r = q("SELECT `id`, `profile-name` FROM `profile` WHERE `uid` = %d",
intval($_SESSION['uid']));
2010-07-02 01:48:07 +02:00
if (dbm::is_result($r)) {
foreach ($r as $rr) {
2010-07-11 08:03:54 +02:00
$selected = (($rr['id'] == $current) ? " selected=\"selected\" " : "");
$o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
2010-07-02 01:48:07 +02:00
}
}
2010-07-11 08:03:54 +02:00
$o .= "</select>\r\n";
2010-07-02 01:48:07 +02:00
return $o;
}
2010-07-11 08:03:54 +02:00
function contact_reputation($current) {
$o = '';
$o .= "<select id=\"contact-reputation-selector\" name=\"reputation\" />\r\n";
$rep = array(
0 => t('Unknown | Not categorised'),
1 => t('Block immediately'),
2 => t('Shady, spammer, self-marketer'),
3 => t('Known to me, but no opinion'),
4 => t('OK, probably harmless'),
5 => t('Reputable, has my trust')
2010-07-11 08:03:54 +02:00
);
foreach($rep as $k => $v) {
$selected = (($k == $current) ? " selected=\"selected\" " : "");
$o .= "<option value=\"$k\" $selected >$v</option>\r\n";
}
$o .= "</select>\r\n";
return $o;
}
2011-08-26 03:12:42 +02:00
function contact_poll_interval($current, $disabled = false) {
2010-07-11 08:03:54 +02:00
2011-08-26 03:12:42 +02:00
$dis = (($disabled) ? ' disabled="disabled" ' : '');
$o = '';
2011-08-26 03:12:42 +02:00
$o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
$rep = array(
0 => t('Frequently'),
1 => t('Hourly'),
2 => t('Twice daily'),
3 => t('Daily'),
4 => t('Weekly'),
5 => t('Monthly')
);
foreach($rep as $k => $v) {
$selected = (($k == $current) ? " selected=\"selected\" " : "");
$o .= "<option value=\"$k\" $selected >$v</option>\r\n";
}
$o .= "</select>\r\n";
return $o;
}
2011-08-26 03:12:42 +02:00
2015-07-16 10:09:59 +02:00
function network_to_name($s, $profile = "") {
2011-08-26 03:12:42 +02:00
2012-01-08 11:08:20 +01:00
$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'),
2012-11-22 17:14:22 +01:00
NETWORK_MAIL2 => t('Email'),
NETWORK_GPLUS => t('Google+'),
NETWORK_PUMPIO => t('pump.io'),
NETWORK_TWITTER => t('Twitter'),
NETWORK_DIASPORA2 => t('Diaspora Connector'),
2015-10-24 20:44:18 +02:00
NETWORK_STATUSNET => t('GNU Social'),
NETWORK_PNUT => t('pnut'),
2014-06-05 17:44:35 +02:00
NETWORK_APPNET => t('App.net')
2012-01-08 11:08:20 +01:00
);
call_hooks('network_to_name', $nets);
$search = array_keys($nets);
$replace = array_values($nets);
2011-08-26 03:12:42 +02:00
2015-07-16 10:09:59 +02:00
$networkname = str_replace($search,$replace,$s);
if (($s == NETWORK_DIASPORA) AND ($profile != "") AND Diaspora::is_redmatrix($profile)) {
$networkname = t("Hubzilla/Redmatrix");
$r = q("SELECT `gserver`.`platform` FROM `gcontact`
INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url`
WHERE `gcontact`.`nurl` = '%s' AND `platform` != ''",
dbesc(normalise_link($profile)));
if ($r)
$networkname = $r[0]["platform"];
}
2011-08-26 03:12:42 +02:00
2015-07-16 10:09:59 +02:00
return $networkname;
2011-08-26 03:12:42 +02:00
}