Current File : //etc/sentora/panel/modules/tomcatrestart/module.zpm |
<div class="zmodule_content panel" id="zmodule_header_<@ ModuleName @>">
<div class="panel-heading">
<img src="<@ ModuleIcon @>" width="35" height="35" border="0" alt="<@ ModuleName @>">
<div class="zmodule_title">
<@ ModuleName @>
</div>
<div class="zmodule_desc" id="zmodule_desc_<@ ModuleName @>"><@ ModuleDesc @></div>
</div>
<@ Result @>
<div class="zform_wrapper" style="width:100%">
<form action="./?module=tomcatrestart&action=operation" method="post">
<input type="hidden" name="postoperation" Id="postoperation" value="" />
<table class="table table-striped" style="float:right;">
<tr>
<td>Tomcat</td>
<td>
<button class="button-loader btn btn-default" type="submit" id="tomcatstart" name="tomcatstart" value="tomcatstart" onClick="return bindvalues(this.value);" ><: Start :></button>
<button style="background:#700;" class="button-loader delete btn btn-danger" type="submit" id="tomcatstop" name="tomcatstop" value="tomcatstop" onClick="return bindvalues(this.value);" ><: Stop :></button>
<button style="background:#070;" class="button-loader btn btn-default" type="submit" id="tomcatrestart" name="tomcatrestart" value="tomcatrestart" onClick="return bindvalues(this.value);" ><: Restart :></button>
</td>
</tr>
</table>
</form>
</div>
<div style="clear:both;">
</div>
</div>
<script type="text/javascript">
function validation(val)
{
document.getElementById("upload_id").value=val;
return true;
// return false;
}
</script>
<script type="text/javascript">
function bindvalues(Id)
{
document.getElementById("postoperation").value=Id;
return true;
}
</script>
<style>
.btn
{
margin-right: 10px;
}
</style>