diff options
author | Mario <mario@mariovavti.com> | 2018-09-24 09:34:28 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-09-24 09:34:28 +0200 |
commit | 85e06a77af7c81dab185b7a5757564215c41a2ed (patch) | |
tree | af31ab4aa677a58fb32b1c4cd54579c459a6aa17 /Zotlabs/Module/Settings/Directory.php | |
parent | 7cadc30914041364663b947d787da6f8b980b894 (diff) | |
download | volse-hubzilla-85e06a77af7c81dab185b7a5757564215c41a2ed.tar.gz volse-hubzilla-85e06a77af7c81dab185b7a5757564215c41a2ed.tar.bz2 volse-hubzilla-85e06a77af7c81dab185b7a5757564215c41a2ed.zip |
add file
Diffstat (limited to 'Zotlabs/Module/Settings/Directory.php')
-rw-r--r-- | Zotlabs/Module/Settings/Directory.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/Zotlabs/Module/Settings/Directory.php b/Zotlabs/Module/Settings/Directory.php new file mode 100644 index 000000000..2682bcafc --- /dev/null +++ b/Zotlabs/Module/Settings/Directory.php @@ -0,0 +1,43 @@ +<?php + +namespace Zotlabs\Module\Settings; + + +class Directory { + + function post() { + + $module = substr(strrchr(strtolower(static::class), '\\'), 1); + + check_form_security_token_redirectOnErr('/settings/' . $module, 'settings_' . $module); + + $features = get_module_features($module); + + process_module_features_post(local_channel(), $features, $_POST); + + build_sync_packet(); + return; + } + + function get() { + + $module = substr(strrchr(strtolower(static::class), '\\'), 1); + + $features = get_module_features($module); + $rpath = (($_GET['rpath']) ? $_GET['rpath'] : ''); + + $tpl = get_markup_template("settings_module.tpl"); + + $o .= replace_macros($tpl, array( + '$rpath' => $rpath, + '$action_url' => 'settings/' . $module, + '$form_security_token' => get_form_security_token('settings_' . $module), + '$title' => t('Directory Settings'), + '$features' => process_module_features_get(local_channel(), $features), + '$submit' => t('Submit') + )); + + return $o; + } + +} |