aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-03 21:37:19 -0700
committerfriendica <info@friendica.com>2012-11-03 21:37:19 -0700
commite5df0f9ce995725adf70df47823ca92bb1396356 (patch)
tree5664982dce3e7cd20537be36804e71af38090e0c /mod
parenta746eb751f0605101cec93e41f0a15b3bc572745 (diff)
downloadvolse-hubzilla-e5df0f9ce995725adf70df47823ca92bb1396356.tar.gz
volse-hubzilla-e5df0f9ce995725adf70df47823ca92bb1396356.tar.bz2
volse-hubzilla-e5df0f9ce995725adf70df47823ca92bb1396356.zip
settings/features page to enable/disable software features
Diffstat (limited to 'mod')
-rw-r--r--mod/settings.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 5a29dfd0c..a78f25015 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -39,6 +39,12 @@ function settings_init(&$a) {
),
array(
+ 'label' => t('Additional features'),
+ 'url' => $a->get_baseurl(true).'/settings/features',
+ 'selected' => ((argv(1) === 'features') ? 'active' : ''),
+ ),
+
+ array(
'label' => t('Display settings'),
'url' => $a->get_baseurl(true).'/settings/display',
'selected' => ((argv(1) === 'display') ? 'active' : ''),
@@ -163,6 +169,18 @@ function settings_post(&$a) {
return;
}
+
+
+ if((argc() > 1) && (argv(1) === 'features')) {
+ check_form_security_token_redirectOnErr('/settings/features', 'settings_features');
+ foreach($_POST as $k => $v) {
+ if(strpos($k,'feature_') === 0) {
+ set_pconfig(local_user(),'feature',substr($k,8),((intval($v)) ? 1 : 0));
+ }
+ }
+ return;
+ }
+
if((argc() > 1) && (argv(1) == 'connectors')) {
check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors');
@@ -591,6 +609,30 @@ function settings_content(&$a) {
return $o;
}
+
+ if((argc() > 1) && (argv(1) === 'features')) {
+
+ $arr = array();
+ $features = get_features();
+ foreach($features as $f) {
+ $arr[] = array('feature_' .$f[0],$f[1],((intval(get_pconfig(local_user(),'feature',$f[0]))) ? "1" : ''),$f[2],array(t('Off'),t('On')));
+ }
+
+
+ $tpl = get_markup_template("settings_features.tpl");
+ $o .= replace_macros($tpl, array(
+ '$form_security_token' => get_form_security_token("settings_features"),
+ '$title' => t('Additional Features'),
+ '$features' => $arr,
+ '$submit' => t('Submit')
+ ));
+ return $o;
+ }
+
+
+
+
+
if((argc() > 1) && (argv(1) === 'connectors')) {
$settings_connectors = "";