network select widget

This commit is contained in:
friendica 2012-01-05 20:40:48 -08:00
parent 291a82c4a4
commit c3ada095f4
6 changed files with 96 additions and 3 deletions

View file

@ -40,3 +40,36 @@ function findpeople_widget() {
}
function networks_widget($baseurl,$selected = '') {
$a = get_app();
if(! local_user())
return '';
$r = q("select distinct(network) from contact where uid = %d",
intval(local_user())
);
$nets = array();
if(count($r)) {
require_once('include/contact_selectors.php');
foreach($r as $rr) {
if($rr['network'])
$nets[] = array('ref' => $rr['network'], 'name' => network_to_name($rr['network']), 'selected' => (($selected == $rr['network']) ? 'selected' : '' ));
}
}
return replace_macros(get_markup_template('nets.tpl'),array(
'$title' => t('Networks'),
'$desc' => '',
'$sel_all' => (($selected == '') ? 'selected' : ''),
'$all' => t('All Networks'),
'$nets' => $nets,
'$base' => $baseurl,
));
}