45 lines
1 KiB
JSON
45 lines
1 KiB
JSON
{
|
|
"name" : "userdel",
|
|
|
|
"info" : {
|
|
"syntax" : "userdel <username>",
|
|
"brief" : "Remove a username from the system",
|
|
},
|
|
|
|
"action" : function ( arg )
|
|
{
|
|
if ( !arg || arg.length == 0 )
|
|
{
|
|
return "Usage: " + this.info.syntax + "<br/>\n";
|
|
}
|
|
|
|
shell.auto_prompt_refresh = false;
|
|
|
|
var users_php = window.location.href;
|
|
users_php = users_php.replace ( /\/([a-zA-Z\.]+)$/, '/modules/users/users.php' );
|
|
params = 'action=del&user=' + escape ( arg );
|
|
|
|
var http = new XMLHttpRequest();
|
|
http.open ( "POST", users_php, true );
|
|
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
|
|
http.setRequestHeader("Content-length", params.length);
|
|
http.setRequestHeader("Connection", "close");
|
|
|
|
http.onreadystatechange = function ()
|
|
{
|
|
if ( http.readyState == 4 && http.status == 200 )
|
|
{
|
|
if ( http.responseText.length > 0 )
|
|
{
|
|
shell.cmdOut.innerHTML = http.responseText;
|
|
}
|
|
|
|
shell.auto_prompt_refresh = true;
|
|
shell.refreshPrompt ( false, false );
|
|
}
|
|
}
|
|
|
|
http.send ( params );
|
|
}
|
|
}
|
|
|