]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Admin/Tos.php
Merge pull request #8272 from MrPetovan/bug/8254-regex-url-img
[friendica.git] / src / Module / Admin / Tos.php
index 000dedd051a0af7145fe069d076364e48f04b98d..c9dd3d8792e0863c91fbd48fe683edce2106667f 100644 (file)
@@ -1,13 +1,31 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 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 +41,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.'));