Issue 9743: Added translatable texts
[friendica.git/.git] / src / Module / Admin / Item / Source.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\Admin\Item;
23
24 use Friendica\Core\Renderer;
25 use Friendica\DI;
26 use Friendica\Model;
27 use Friendica\Module\BaseAdmin;
28
29 class Source extends BaseAdmin
30
31 {
32         public static function content(array $parameters = [])
33         {
34                 parent::content($parameters);
35
36                 $guid = basename($_REQUEST['guid'] ?? $parameters['guid'] ?? '');
37
38                 $source = '';
39                 $item_uri = '';
40                 $item_id = '';
41                 $terms = [];
42                 if (!empty($guid)) {
43                         $item = Model\Post::selectFirst(['id', 'uri-id', 'guid', 'uri'], ['guid' => $guid]);
44
45                         if ($item) {
46                                 $conversation = Model\Conversation::getByItemUri($item['uri']);
47
48                                 $item_id = $item['id'];
49                                 $item_uri = $item['uri'];
50                                 $source = $conversation['source'];
51                                 $terms = Model\Tag::getByURIId($item['uri-id'], [Model\Tag::HASHTAG, Model\Tag::MENTION, Model\Tag::IMPLICIT_MENTION]);
52                         }
53                 }
54
55                 $tpl = Renderer::getMarkupTemplate('admin/item/source.tpl');
56                 $o = Renderer::replaceMacros($tpl, [
57                         '$title'       => DI::l10n()->t('Item Source'),
58                         '$guid'        => ['guid', DI::l10n()->t('Item Guid'), $guid, ''],
59                         '$source'      => $source,
60                         '$item_uri'    => $item_uri,
61                         '$item_id'     => $item_id,
62                         '$terms'       => $terms,
63                         '$itemidlbl'   => DI::l10n()->t('Item Id'),
64                         '$itemurilbl'  => DI::l10n()->t('Item URI'),
65                         '$submit'      => DI::l10n()->t('Submit'),
66                         '$termslbl'    => DI::l10n()->t('Terms'),
67                         '$taglbl'      => DI::l10n()->t('Tag'),
68                         '$typelbl'     => DI::l10n()->t('Type'),
69                         '$termlbl'     => DI::l10n()->t('Term'),
70                         '$urllbl'      => DI::l10n()->t('URL'),
71                         '$mentionlbl'  => DI::l10n()->t('Mention'),
72                         '$implicitlbl' => DI::l10n()->t('Implicit Mention'),
73                         '$sourcelbl'   => DI::l10n()->t('Source'),
74                 ]);
75
76                 return $o;
77         }
78 }