forked from nilsteampassnet/TeamPass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorites.php
86 lines (81 loc) · 3.18 KB
/
favorites.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
* @package favorites.php
* @author Nils Laumaillé <[email protected]>
* @version 2.1.27
* @copyright 2009-2019 Nils Laumaillé
* @license GNU GPL-3.0
* @link https://www.teampass.net
*
* This library 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.
*/
if (!isset($_SESSION['CPM']) || $_SESSION['CPM'] != 1) {
die('Hacking attempt...');
}
// Load config
if (file_exists('../includes/config/tp.config.php')) {
include_once '../includes/config/tp.config.php';
} elseif (file_exists('./includes/config/tp.config.php')) {
include_once './includes/config/tp.config.php';
} else {
throw new Exception("Error file '/includes/config/tp.config.php' not exists", 1);
}
echo '
<form name="form_favourites" method="post" action="">
<div class="title ui-widget-content ui-corner-all">'.$LANG['my_favourites'].'</div>
<div style="height:100%;overflow:auto;">';
if (empty($_SESSION['favourites'])) {
echo '
';
} else {
echo '
<table id="t_items" style="empty-cells:show;width:100%;" cellspacing="0" cellpadding="5">
<thead><tr>
<th style="width:55px;"></th>
<th style="min-width:15%;">'.$LANG['label'].'</th>
<th style="min-width:50%;">'.$LANG['description'].'</th>
<th style="min-width:20%;">'.$LANG['group'].'</th>
</tr></thead>
<tbody>';
//Get favourites
$cpt = 0;
foreach ($_SESSION['favourites'] as $fav) {
if (!empty($fav)) {
$data = DB::queryFirstRow(
"SELECT i.label, i.description, i.id, i.id_tree, t.title
FROM ".prefix_table("items")." as i
INNER JOIN ".prefix_table("nested_tree")." as t ON (t.id = i.id_tree)
WHERE i.id = %i",
$fav
);
if (!empty($data['label'])) {
echo '
<tr class="ligne'.($cpt % 2).'" id="row-'.$data['id'].'">
<td>
<i class="fa fa-external-link" onClick="javascript:window.location.href = \'index.php?page=items&group='.$data['id_tree'].'&id='.$data['id'].'\';" style="cursor:pointer; font-size:18px;"></i>
<i class="fa fa-trash mi-red tip" onClick="prepare_delete_fav(\''.$data['id'].'\');" style="cursor:pointer; font-size:18px;" title="'.$LANG['item_menu_del_from_fav'].'"></i>
</td>
<td align="left">'.stripslashes($data['label']).'</td>
<td align="center">'.stripslashes($data['description']).'</td>
<td align="center">',$data['title'] == $_SESSION['user_id'] ? $_SESSION['login'] : $data['title'], '</td>
</tr>';
$cpt++;
}
}
}
echo '
</tbody>
</table>';
}
echo '
</div>
</form>';
// DIV FOR FAVOURITES DELETION
echo '
<div id="div_delete_fav" style="display:none;">
'.$LANG['confirm_del_from_fav'].'
<input type="hidden" id="detele_fav_id" />
</div>';