ConLite/conlite/templates/standard/template.rights_menu.html

48 Zeilen
1.5 KiB
HTML

<html>
<head>
<title></title>
<meta http-equiv="expires" content="0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<script type="text/javascript" src="scripts/rowMark.js"></script>
<script type="text/javascript" src="scripts/infoBox.js"></script>
<script type="text/javascript" src="scripts/general.js"></script>
<link rel="stylesheet" type="text/css" href="styles/contenido.css" />
<script type="text/javascript" src="scripts/messageBox.js.php?contenido={SID}"></script>
<script type="text/javascript">
var sid = "{SID}";
/* Create messageBox
instance */
box = new messageBox("", "", "", 0, 0);
/* Function for deleting
modules */
function deleteUser(iduser) {
url = 'main.php?area=user';
url += '&action=user_delete';
url += '&frame=2';
url += '&userid=' + iduser;
url += '&contenido=' + sid;
window.location.href = url;
}
</script>
</head>
<body>
<table width="100%" cellspacing="0" cellpadding="2" border="0">
<!-- BEGIN:BLOCK -->
<tr class="text_medium" style="background-color: {BGCOLOR};" onmouseover="row.over(this)" onmouseout="row.out(this)" onclick="row.click(this)">
<td>{ICON}</td>
<td width="100%">{TEXT}</td>
<td align="right">{DELETE}</td>
</tr>
<!-- END:BLOCK -->
</table>
</body>
</html>