streams/Zotlabs/Module/Settings/Features.php

66 lines
1.5 KiB
PHP
Raw Normal View History

2016-09-07 03:10:56 +00:00
<?php
namespace Zotlabs\Module\Settings;
2018-06-05 01:40:11 +00:00
use Zotlabs\Lib\Libsync;
2016-09-07 03:10:56 +00:00
class Features {
function post() {
check_form_security_token_redirectOnErr('/settings/features', 'settings_features');
$features = get_features(false);
2016-09-07 03:10:56 +00:00
foreach($features as $fname => $fdata) {
foreach(array_slice($fdata,1) as $f) {
$k = $f[0];
if(array_key_exists("feature_$k",$_POST))
set_pconfig(local_channel(),'feature',$k, (string) $_POST["feature_$k"]);
else
set_pconfig(local_channel(),'feature', $k, '');
}
2016-09-07 03:10:56 +00:00
}
2018-06-05 01:40:11 +00:00
Libsync::build_sync_packet();
2016-09-07 03:10:56 +00:00
return;
}
function get() {
2018-04-09 03:05:30 +00:00
$arr = [];
$harr = [];
2018-04-09 03:05:30 +00:00
$all_features_raw = get_features(false);
foreach($all_features_raw as $fname => $fdata) {
foreach(array_slice($fdata,1) as $f) {
$harr[$f[0]] = ((intval(feature_enabled(local_channel(),$f[0]))) ? "1" : '');
}
}
2019-05-08 02:40:49 +00:00
$features = get_features(true);
2018-04-09 03:05:30 +00:00
2016-09-07 03:10:56 +00:00
foreach($features as $fname => $fdata) {
$arr[$fname] = array();
$arr[$fname][0] = $fdata[0];
foreach(array_slice($fdata,1) as $f) {
$arr[$fname][1][] = array('feature_' . $f[0],$f[1],((intval(feature_enabled(local_channel(),$f[0]))) ? "1" : ''),$f[2],array(t('Off'),t('On')));
unset($harr[$f[0]]);
2016-09-07 03:10:56 +00:00
}
}
$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,
'$hiddens' => $harr,
'$baseurl' => z_root(),
'$submit' => t('Submit'),
2016-09-07 03:10:56 +00:00
));
return $o;
}
}