PHP Classes

File: SmallServerAdmin/monitoring/dialogs/confirmToKillProcess.php

Recommend this page to a friend!
  Classes of Aleksey Nemiro   PHP Small Server Administrator   SmallServerAdmin/monitoring/dialogs/confirmToKillProcess.php   Download  
File: SmallServerAdmin/monitoring/dialogs/confirmToKillProcess.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Small Server Administrator
Web panel for small Debian and Ubuntu servers
Author: By
Last change:
Date: 7 years ago
Size: 1,334 bytes
 

Contents

Class file image Download
<div id="confirmToKillProcess" class="modal" role="dialog" data-not-restore="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
        <h3>${Confirm}</h3>
      </div>
      <div class="modal-body">
        ${MONITORING_CONFIRM_KILL}
        <br /><br />
        ${Signal}:
        <div class="btn-group">
          <label class="btn btn-default btn-xs" ng-model="KillSignal" uib-btn-radio="'SIGTERM'">SIGTERM</label>
          <label class="btn btn-default btn-xs" ng-model="KillSignal" uib-btn-radio="'SIGKILL'">SIGKILL (-9)</label>
          <label class="btn btn-default btn-xs" ng-model="KillSignal" uib-btn-radio="'SIGSTOP'">SIGSTOP</label>
          <label class="btn btn-default btn-xs" ng-model="KillSignal" uib-btn-radio="'SIGTSTP'">SIGTSTP</label>
          <label class="btn btn-default btn-xs" ng-model="KillSignal" uib-btn-radio="'SIGINT'">SIGINT</label>
        </div>
      </div>
      <div class="modal-footer">
        <button class="btn btn-danger pull-left" ng-click="KillProcess()">${Yes, kill the process}</button>
        <button class="btn btn-default pull-left" data-dismiss="modal" aria-hidden="true">${Cancel}</button>
      </div>
    </div>
  </div>
</div>