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