From 65be3de200040bad89a4b5bc78fb6ff72bfffaad Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 22 Sep 2018 20:10:48 +0200 Subject: add files and settings for channel manager --- Zotlabs/Module/Settings/Manage.php | 55 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 Zotlabs/Module/Settings/Manage.php (limited to 'Zotlabs/Module/Settings/Manage.php') diff --git a/Zotlabs/Module/Settings/Manage.php b/Zotlabs/Module/Settings/Manage.php new file mode 100644 index 000000000..f10f4d502 --- /dev/null +++ b/Zotlabs/Module/Settings/Manage.php @@ -0,0 +1,55 @@ + $rpath, + '$action_url' => 'settings/manage', + '$form_security_token' => get_form_security_token("settings_manage"), + '$title' => t('Channel Manager Settings'), + '$features' => process_features_get(local_channel(), $features), + '$submit' => t('Submit') + )); + + return $o; + } + + function get_features() { + $arr = [ + + [ + 'nav_channel_select', + t('Navigation Channel Select'), + t('Change channels directly from within the navigation dropdown menu'), + true, + get_config('feature_lock','nav_channel_select'), + ] + + ]; + + return $arr; + + } + +} -- cgit v1.2.3