admin_frame_header.htm
1.7 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset={UC_CHARSET}" />
<title>UCenter Administrator's Control Panel</title>
<link rel="stylesheet" href="images/admincp.css" type="text/css" media="all" />
<meta content="Comsenz Inc." name="Copyright" />
</head>
<body>
<div class="mainhd">
<div class="logo">UCenter Administrator's Control Panel</div>
<div class="uinfo">
<p>{lang welcome}, <em>$username</em> [ <a href="admin.php?m=user&a=logout" target="_top">{lang menu_logout}</a> ]</p>
<!--{if $admincp}-->
<p id="others"><a href="#" class="othersoff" onclick="showmenu(this);">{lang menu_otheradmincp}</a></p>
<script type="text/javascript">
function showmenu(ctrl) {
ctrl.className = ctrl.className == 'otherson' ? 'othersoff' : 'otherson';
var menu = parent.document.getElementById('toggle');
if(!menu) {
menu = parent.document.createElement('div');
menu.id = 'toggle';
menu.innerHTML = '<ul>$admincp</ul>';
var obj = ctrl;
var x = ctrl.offsetLeft;
var y = ctrl.offsetTop;
while((obj = obj.offsetParent) != null) {
x += obj.offsetLeft;
y += obj.offsetTop;
}
menu.style.left = x + 'px';
menu.style.top = y + ctrl.offsetHeight + 'px';
menu.className = 'togglemenu';
menu.style.display = '';
parent.document.body.appendChild(menu);
} else {
menu.style.display = menu.style.display == 'none' ? '' : 'none';
}
}
</script>
<!--{/if}-->
</div>
</div>
</body>
</html>