]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Admin/Tos.php
Remove join profile table
[friendica.git] / src / Module / Admin / Tos.php
index d5e0bdc6f09eb5a706e3d4abe20c9882cec3660d..b89887dae8b3fbe97e2d869049c5451f7e70dcf0 100644 (file)
@@ -2,12 +2,11 @@
 
 namespace Friendica\Module\Admin;
 
-use Friendica\Core\Config;
 use Friendica\Core\Renderer;
 use Friendica\DI;
-use Friendica\Module\BaseAdminModule;
+use Friendica\Module\BaseAdmin;
 
-class Tos extends BaseAdminModule
+class Tos extends BaseAdmin
 {
        public static function post(array $parameters = [])
        {
@@ -23,9 +22,9 @@ class Tos extends BaseAdminModule
                $displayprivstatement = !empty($_POST['displayprivstatement']);
                $tostext = (!empty($_POST['tostext']) ? strip_tags(trim($_POST['tostext'])) : '');
 
-               Config::set('system', 'tosdisplay', $displaytos);
-               Config::set('system', 'tosprivstatement', $displayprivstatement);
-               Config::set('system', 'tostext', $tostext);
+               DI::config()->set('system', 'tosdisplay', $displaytos);
+               DI::config()->set('system', 'tosprivstatement', $displayprivstatement);
+               DI::config()->set('system', 'tostext', $tostext);
 
                info(DI::l10n()->t('The Terms of Service settings have been updated.'));
 
@@ -41,11 +40,11 @@ class Tos extends BaseAdminModule
                return Renderer::replaceMacros($t, [
                        '$title' => DI::l10n()->t('Administration'),
                        '$page' => DI::l10n()->t('Terms of Service'),
-                       '$displaytos' => ['displaytos', DI::l10n()->t('Display Terms of Service'), Config::get('system', 'tosdisplay'), DI::l10n()->t('Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page.')],
-                       '$displayprivstatement' => ['displayprivstatement', DI::l10n()->t('Display Privacy Statement'), Config::get('system', 'tosprivstatement'), DI::l10n()->t('Show some informations regarding the needed information to operate the node according e.g. to <a href="%s" target="_blank">EU-GDPR</a>.', 'https://en.wikipedia.org/wiki/General_Data_Protection_Regulation')],
+                       '$displaytos' => ['displaytos', DI::l10n()->t('Display Terms of Service'), DI::config()->get('system', 'tosdisplay'), DI::l10n()->t('Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page.')],
+                       '$displayprivstatement' => ['displayprivstatement', DI::l10n()->t('Display Privacy Statement'), DI::config()->get('system', 'tosprivstatement'), DI::l10n()->t('Show some informations regarding the needed information to operate the node according e.g. to <a href="%s" target="_blank">EU-GDPR</a>.', 'https://en.wikipedia.org/wiki/General_Data_Protection_Regulation')],
                        '$preview' => DI::l10n()->t('Privacy Statement Preview'),
                        '$privtext' => $tos->privacy_complete,
-                       '$tostext' => ['tostext', DI::l10n()->t('The Terms of Service'), Config::get('system', 'tostext'), DI::l10n()->t('Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.')],
+                       '$tostext' => ['tostext', DI::l10n()->t('The Terms of Service'), DI::config()->get('system', 'tostext'), DI::l10n()->t('Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.')],
                        '$form_security_token' => parent::getFormSecurityToken('admin_tos'),
                        '$submit' => DI::l10n()->t('Save Settings'),
                ]);