12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php if(!defined('UC_ROOT')) exit('Access Denied');?>
- <!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=<?php echo 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>您好, <em><?php echo $username;?></em> [ <a href="admin.php?m=user&a=logout" target="_top">退出</a> ]</p>
- <?php if($admincp) { ?>
- <p id="others"><a href="#" class="othersoff" onclick="showmenu(this);">其他管理平台</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><?php echo $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>
- <?php } ?>
- </div>
- </div>
- </body>
- </html>
|