]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Filer/SaveTag.php
Merge pull request #8272 from MrPetovan/bug/8254-regex-url-img
[friendica.git] / src / Module / Filer / SaveTag.php
index 93f683744e3505bbe989467520798bb81f34a690..12226107bae6122e0872d5920b92d7babb137c86 100644 (file)
@@ -1,10 +1,27 @@
 <?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\Filer;
 
 use Friendica\BaseModule;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
 use Friendica\Core\Renderer;
 use Friendica\DI;
 use Friendica\Model;
@@ -18,7 +35,7 @@ class SaveTag extends BaseModule
        public static function init(array $parameters = [])
        {
                if (!local_user()) {
-                       info(L10n::t('You must be logged in to use this module'));
+                       info(DI::l10n()->t('You must be logged in to use this module'));
                        DI::baseUrl()->redirect();
                }
        }
@@ -37,17 +54,17 @@ class SaveTag extends BaseModule
                if ($item_id && strlen($term)) {
                        // file item
                        Model\FileTag::saveFile(local_user(), $item_id, $term);
-                       info(L10n::t('Filetag %s saved to item', $term));
+                       info(DI::l10n()->t('Filetag %s saved to item', $term));
                }
 
                // return filer dialog
-               $filetags = PConfig::get(local_user(), 'system', 'filetags', '');
+               $filetags = DI::pConfig()->get(local_user(), 'system', 'filetags', '');
                $filetags = Model\FileTag::fileToArray($filetags);
 
                $tpl = Renderer::getMarkupTemplate("filer_dialog.tpl");
                echo Renderer::replaceMacros($tpl, [
-                       '$field' => ['term', L10n::t("Save to Folder:"), '', '', $filetags, L10n::t('- select -')],
-                       '$submit' => L10n::t('Save'),
+                       '$field' => ['term', DI::l10n()->t("Save to Folder:"), '', '', $filetags, DI::l10n()->t('- select -')],
+                       '$submit' => DI::l10n()->t('Save'),
                ]);
 
                exit;