diff options
author | friendica <info@friendica.com> | 2014-09-17 21:16:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-17 21:16:15 -0700 |
commit | 51d9f0d97a186e32aeacc42e3b2d2001d04b5dd2 (patch) | |
tree | 52cd6eacf0eb3b78edc815fc91be81ae24399d05 /mod | |
parent | eca420ec96912ad573354953297564c9f9ad2c32 (diff) | |
download | volse-hubzilla-51d9f0d97a186e32aeacc42e3b2d2001d04b5dd2.tar.gz volse-hubzilla-51d9f0d97a186e32aeacc42e3b2d2001d04b5dd2.tar.bz2 volse-hubzilla-51d9f0d97a186e32aeacc42e3b2d2001d04b5dd2.zip |
channel permission roles
Diffstat (limited to 'mod')
-rw-r--r-- | mod/new_channel.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mod/new_channel.php b/mod/new_channel.php index eafef2c08..e70c64f23 100644 --- a/mod/new_channel.php +++ b/mod/new_channel.php @@ -1,6 +1,8 @@ <?php require_once('include/identity.php'); +require_once('include/permissions.php'); + function new_channel_init(&$a) { @@ -100,7 +102,7 @@ function new_channel_content(&$a) { $name = ((x($_REQUEST,'name')) ? $_REQUEST['name'] : "" ); $nickname = ((x($_REQUEST,'nickname')) ? $_REQUEST['nickname'] : "" ); - + $privacy_role = ((x($_REQUEST,'permissions_role')) ? $_REQUEST['permissions_role'] : "" ); $o = replace_macros(get_markup_template('new_channel.tpl'), array( @@ -113,6 +115,9 @@ function new_channel_content(&$a) { '$nick_desc' => t('Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others.'), '$label_import' => t('Or <a href="import">import an existing channel</a> from another location'), '$name' => $name, + '$label_role' => t('Channel Type'), + '$help_role' => t('Please choose a channel role (such as social networking or community forum) and privacy requirements so we can select the best permissions for you'), + '$role_select' => role_selector(($privacy_role) ? $privacy_role : 'social'), '$nickname' => $nickname, '$submit' => t('Create') )); |