This commit is contained in:
tuend-work
2025-11-13 07:41:56 +07:00
parent 7f357f3a30
commit 4478491d73
1729 changed files with 193578 additions and 20 deletions

View File

@@ -0,0 +1,77 @@
|LF_STANDARD|
|?TREE=&raquo; <a class=tree href="/CMD_MOVE_USERS">`LANG_MOVE_USERS`</a>|
|?HELP_SECTION=`ADMIN_HELPER`|
|HTM_HEADER_FULL|
<script language="Javascript">
<!--
|DATALIST|
function submitBackup()
{
document.tableform1.backup_submit.disabled = true;
document.tableform1.submit();
}
function addReseller(reseller)
{
var select="select";
with (document.tableform1)
{
var i=0;
var count=0;
for (i=0; i < user_reseller_list.length; i++)
if (user_reseller_list[i][0] == reseller)
count=user_reseller_list[i][1];
for (i=0; i < elements.length; i++)
if (elements[i].type == 'checkbox')
if (elements[i].name.substring(0, select.length) == select)
if (elements[i].value == reseller)
{
var end=i+count+1;
i++;
for (;i<end; i++)
elements[i].checked = true;
}
}
}
//-->
</script>
<b>|LANG_MOVE_USERS|</b><br><br>
<table class=list cellpadding=3 cellspacing=1>
<form name=tableform1 action="/CMD_MOVE_USERS" method="POST">
<input type=hidden name=action value="moveusers">
<tr>
<td class=listtitle>
|LANG_SELECT_USERS_OF| |CREATOR_SELECT| <input type=button value="Select" onClick="addReseller(document.tableform1.selectcreator.value)">
</td>
<td class=listtitle>|LANG_MOVE_SELECTED|:</td></tr>
<tr><td class=list align=center>
<div style="overflow: auto; height: 400px; width: 300px;">
|USERS|
</div>
</td>
<td class=list align=center valign=top>
|CREATORS|
</td>
</tr>
<tr><td class=listtitle colspan=2 align=right><input type=submit value="|LANG_SUBMIT|"</td></tr>
</form>
</table>
|HTM_FOOTER_FULL|