diff options
author | friendica <info@friendica.com> | 2012-08-30 22:42:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-30 22:42:51 -0700 |
commit | 4736fa5927b35ebd0b2fc337e9f4a3d1e1e0af0d (patch) | |
tree | 958c66211db81e27ab0bf77304a0763c900f2b45 /mod/manage.php | |
parent | 80bd128425b99d91ddca897bc2cd6dcef5268fe4 (diff) | |
download | volse-hubzilla-4736fa5927b35ebd0b2fc337e9f4a3d1e1e0af0d.tar.gz volse-hubzilla-4736fa5927b35ebd0b2fc337e9f4a3d1e1e0af0d.tar.bz2 volse-hubzilla-4736fa5927b35ebd0b2fc337e9f4a3d1e1e0af0d.zip |
begin channel management (was "manage") page, use term "channel" instead of the vague and hard to explain "identity"
Diffstat (limited to 'mod/manage.php')
-rw-r--r-- | mod/manage.php | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/mod/manage.php b/mod/manage.php index 96d420c78..e0e99b123 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -82,32 +82,29 @@ function manage_post(&$a) { function manage_content(&$a) { - if(! local_user()) { + if(! get_account_id()) { notice( t('Permission denied.') . EOL); return; } - $o = '<h3>' . t('Manage Identities and/or Pages') . '</h3>'; + $active = null; - - $o .= '<div id="identity-manage-desc">' . t('Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions') . '</div>'; - - $o .= '<div id="identity-manage-choose">' . t('Select an identity to manage: ') . '</div>'; - - $o .= '<div id="identity-selector-wrapper">' . "\r\n"; - $o .= '<form action="manage" method="post" >' . "\r\n"; - $o .= '<select name="identity" size="4" onchange="this.form.submit();" >' . "\r\n"; + if(local_user()) { + $r = q("select * from entity where entity_id = %d limit 1", + intval(local_user()) + ); - foreach($a->identities as $rr) { - $selected = (($rr['nickname'] === $a->user['nickname']) ? ' selected="selected" ' : ''); - $o .= '<option ' . $selected . 'value="' . $rr['uid'] . '">' . $rr['username'] . ' (' . $rr['nickname'] . ')</option>' . "\r\n"; + if($r && count($r)) + $active = $r[0]; } - $o .= '</select>' . "\r\n"; - $o .= '<div id="identity-select-break"></div>' . "\r\n"; -// $o .= '<input id="identity-submit" type="submit" name="submit" value="' . t('Submit') . '" />'; - $o .= '</div></form>' . "\r\n"; + $o = replace_macros(get_markup_template('channels.tpl'), array( + '$header' => t('Manage Profile Channels'), + '$desc' => t('These are your Profile Channels. Select any Profile Channel to attach and make that the current channel.'), + '$active' => $active, + )); + return $o; |