]> git.mxchange.org Git - friendica.git/blob - src/Content/Widget/SavedSearches.php
Merge pull request #8660 from annando/item-insert
[friendica.git] / src / Content / Widget / SavedSearches.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\Content\Widget;
23
24 use Friendica\Core\Renderer;
25 use Friendica\Core\Search;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28
29 class SavedSearches
30 {
31         /**
32          * @param string $return_url
33          * @param string $search
34          * @return string
35          * @throws \Exception
36          */
37         public static function getHTML($return_url, $search = '')
38         {
39                 $o = '';
40
41                 $saved_searches = DBA::select('search', ['id', 'term'], ['uid' => local_user()]);
42                 if (DBA::isResult($saved_searches)) {
43                         $saved = [];
44                         foreach ($saved_searches as $saved_search) {
45                                 $saved[] = [
46                                         'id'          => $saved_search['id'],
47                                         'term'        => $saved_search['term'],
48                                         'encodedterm' => urlencode($saved_search['term']),
49                                         'searchpath'  => Search::getSearchPath($saved_search['term']),
50                                         'delete'      => DI::l10n()->t('Remove term'),
51                                         'selected'    => $search == $saved_search['term'],
52                                 ];
53                         }
54
55                         $tpl = Renderer::getMarkupTemplate('widget/saved_searches.tpl');
56
57                         $o = Renderer::replaceMacros($tpl, [
58                                 '$title'      => DI::l10n()->t('Saved Searches'),
59                                 '$add'        => '',
60                                 '$searchbox'  => '',
61                                 '$saved'      => $saved,
62                                 '$return_url' => urlencode($return_url),
63                         ]);
64                 }
65
66                 return $o;
67         }
68 }