diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-02 16:08:30 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-02 16:08:30 -0700 |
commit | 904881e20703c90c54dc4fc6049616b57bef3bb5 (patch) | |
tree | a6df77e7cef3cbe8dd9628b637538590374086b8 /Zotlabs/Module | |
parent | b00d0842439da9f88b4be690a5c382d5192631f0 (diff) | |
download | volse-hubzilla-904881e20703c90c54dc4fc6049616b57bef3bb5.tar.gz volse-hubzilla-904881e20703c90c54dc4fc6049616b57bef3bb5.tar.bz2 volse-hubzilla-904881e20703c90c54dc4fc6049616b57bef3bb5.zip |
pro: allow admin to set a site techlevel and optionally lock it.
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Settings.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index 4bbbd2e9b..364e067bd 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -803,6 +803,10 @@ class Settings extends \Zotlabs\Web\Controller { '5' => t('Wizard - I probably know more than you do') ]; + $def_techlevel = get_config('system','techlevel'); + if($def_techlevel === false) + $def_techlevel = \App::$account['account_level']; + $techlock = get_config('system','techlevel_lock'); $tpl = get_markup_template("settings_account.tpl"); $o .= replace_macros($tpl, array( @@ -811,7 +815,8 @@ class Settings extends \Zotlabs\Web\Controller { '$origpass' => array('origpass', t('Current Password'), ' ',''), '$password1'=> array('npassword', t('Enter New Password'), '', ''), '$password2'=> array('confirm', t('Confirm New Password'), '', t('Leave password fields blank unless changing')), - '$techlevel' => [ 'techlevel', t('Your technical skill level'), \App::$account['account_level'], t('Used to provide a member experience matched to your comfort level'), $techlevels ], + '$techlevel' => [ 'techlevel', t('Your technical skill level'), $def_techlevel, t('Used to provide a member experience matched to your comfort level'), $techlevels ], + '$techlock' => $techlock, '$submit' => t('Submit'), '$email' => array('email', t('Email Address:'), $email, ''), '$removeme' => t('Remove Account'), |