]> git.mxchange.org Git - friendica.git/blob - src/Content/Widget/SavedSearches.php
Merge pull request #11265 from k-alin/6606-k-alin-mysql-unix-socket
[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\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                 $saved = [];
40                 $saved_searches = DBA::select('search', ['id', 'term'], ['uid' => local_user()]);
41                 while ($saved_search = DBA::fetch($saved_searches)) {
42                         $saved[] = [
43                                 'id'          => $saved_search['id'],
44                                 'term'        => $saved_search['term'],
45                                 'encodedterm' => urlencode($saved_search['term']),
46                                 'searchpath'  => Search::getSearchPath($saved_search['term']),
47                                 'delete'      => DI::l10n()->t('Remove term'),
48                                 'selected'    => $search == $saved_search['term'],
49                         ];
50                 }
51                 DBA::close($saved_searches);
52
53                 if (empty($saved)) {
54                         return '';
55                 }
56
57                 $tpl = Renderer::getMarkupTemplate('widget/saved_searches.tpl');
58
59                 return Renderer::replaceMacros($tpl, [
60                         '$title'      => DI::l10n()->t('Saved Searches'),
61                         '$add'        => '',
62                         '$searchbox'  => '',
63                         '$saved'      => $saved,
64                         '$return_url' => urlencode($return_url),
65                 ]);
66         }
67 }