diff options
author | Friendika <info@friendika.com> | 2011-08-25 18:12:42 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-25 18:12:42 -0700 |
commit | 99ea045723b89a312db5227f0036c76d481e58a1 (patch) | |
tree | 44fafd9e4c81c84b9e75d5558a8f9c6324d4d040 /include/contact_selectors.php | |
parent | 21c03fb5220d2190a8a764d5430c6fa8bc013860 (diff) | |
download | volse-hubzilla-99ea045723b89a312db5227f0036c76d481e58a1.tar.gz volse-hubzilla-99ea045723b89a312db5227f0036c76d481e58a1.tar.bz2 volse-hubzilla-99ea045723b89a312db5227f0036c76d481e58a1.zip |
some minor work on contact edit page
Diffstat (limited to 'include/contact_selectors.php')
-rw-r--r-- | include/contact_selectors.php | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/include/contact_selectors.php b/include/contact_selectors.php index ac1e38e4f..1303acf74 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -46,10 +46,11 @@ function contact_reputation($current) { } -function contact_poll_interval($current) { +function contact_poll_interval($current, $disabled = false) { + $dis = (($disabled) ? ' disabled="disabled" ' : ''); $o = ''; - $o .= '<select id="contact-poll-interval" name="poll" />' . "\r\n"; + $o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n"; $rep = array( 0 => t('Frequently'), @@ -67,3 +68,13 @@ function contact_poll_interval($current) { $o .= "</select>\r\n"; return $o; } + + +function network_to_name($s) { + + call_hooks('network_to_name', $s); + + return str_replace(array(NETWORK_DFRN,NETWORK_OSTATUS,NETWORK_FEED,NETWORK_MAIL,NETWORK_DIASPORA,NETWORK_FACEBOOK,NETWORK_ZOT), + array(t('Friendika'),t('OStatus'),t('RSS/Atom'),t('Email'),t('Diaspora'),t('Facebook'),t('Zot!')),$s); + +} |