|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
//------------------------------------------------------------------------------ |
|
4
|
|
|
// |
|
5
|
|
|
// eTraxis - Records tracking web-based system |
|
6
|
|
|
// Copyright (C) 2005-2010 Artem Rodygin |
|
7
|
|
|
// |
|
8
|
|
|
// This program is free software: you can redistribute it and/or modify |
|
9
|
|
|
// it under the terms of the GNU General Public License as published by |
|
10
|
|
|
// the Free Software Foundation, either version 3 of the License, or |
|
11
|
|
|
// (at your option) any later version. |
|
12
|
|
|
// |
|
13
|
|
|
// This program is distributed in the hope that it will be useful, |
|
14
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
15
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
16
|
|
|
// GNU General Public License for more details. |
|
17
|
|
|
// |
|
18
|
|
|
// You should have received a copy of the GNU General Public License |
|
19
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
20
|
|
|
// |
|
21
|
|
|
//------------------------------------------------------------------------------ |
|
22
|
|
|
|
|
23
|
|
|
/** |
|
24
|
|
|
* @package eTraxis |
|
25
|
|
|
* @ignore |
|
26
|
|
|
*/ |
|
27
|
|
|
|
|
28
|
|
|
/**#@+ |
|
29
|
|
|
* Dependency. |
|
30
|
|
|
*/ |
|
31
|
|
|
require_once('../engine/engine.php'); |
|
32
|
|
|
require_once('../dbo/accounts.php'); |
|
33
|
|
|
/**#@-*/ |
|
34
|
|
|
|
|
35
|
|
|
init_page(); |
|
36
|
|
|
|
|
37
|
|
|
if (get_user_level() != USER_LEVEL_ADMIN) |
|
38
|
|
|
{ |
|
39
|
|
|
debug_write_log(DEBUG_NOTICE, 'User must have admin rights to be allowed.'); |
|
40
|
|
|
header('Location: index.php'); |
|
41
|
|
|
exit; |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
// check that requested account exists |
|
45
|
|
|
|
|
46
|
|
|
$id = ustr2int(try_request('id')); |
|
47
|
|
|
$account = account_find($id); |
|
48
|
|
|
|
|
49
|
|
|
if (!$account) |
|
|
|
|
|
|
50
|
|
|
{ |
|
51
|
|
|
debug_write_log(DEBUG_NOTICE, 'Account cannot be found.'); |
|
52
|
|
|
header('Location: index.php'); |
|
53
|
|
|
exit; |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
if ($account['is_ldapuser']) |
|
57
|
|
|
{ |
|
58
|
|
|
debug_write_log(DEBUG_NOTICE, 'Active Directory account cannot be viewed.'); |
|
59
|
|
|
header('Location: index.php'); |
|
60
|
|
|
exit; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
// page's title |
|
64
|
|
|
|
|
65
|
|
|
$title = ustrprocess(get_html_resource(RES_ACCOUNT_X_ID), ustr2html(account_get_username($account['username'], FALSE))); |
|
66
|
|
|
|
|
67
|
|
|
// generate breadcrumbs and tabs |
|
68
|
|
|
|
|
69
|
|
|
$xml = '<breadcrumbs>' |
|
70
|
|
|
. '<breadcrumb url="index.php">' . get_html_resource(RES_ACCOUNTS_ID) . '</breadcrumb>' |
|
71
|
|
|
. '<breadcrumb url="view.php?id=' . $id . '">' . $title . '</breadcrumb>' |
|
72
|
|
|
. '</breadcrumbs>' |
|
73
|
|
|
. '<tabs>' |
|
74
|
|
|
. '<tab url="account.php?id=' . $id . '">' . ustr2html($account['fullname']) . '</tab>' |
|
75
|
|
|
. '<tab url="groups.php?id=' . $id . '">' . get_html_resource(RES_MEMBERSHIP_ID) . '</tab>' |
|
76
|
|
|
. '</tabs>'; |
|
77
|
|
|
|
|
78
|
|
|
echo(xml2html($xml, $title)); |
|
79
|
|
|
|
|
80
|
|
|
?> |
|
|
|
|
|
|
81
|
|
|
|
This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.
Consider making the comparison explicit by using
empty(..)or! empty(...)instead.