| | |
| | | EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| | | */ |
| | | |
| | | die('Function has been removed.'); |
| | | //die('Function has been removed.'); |
| | | |
| | | require_once('../../lib/config.inc.php'); |
| | | require_once('../../lib/app.inc.php'); |
| | | require_once '../../lib/config.inc.php'; |
| | | require_once '../../lib/app.inc.php'; |
| | | |
| | | //* Check permissions for module |
| | | $app->auth->check_module_permissions('admin'); |
| | |
| | | |
| | | //* load language file |
| | | $lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_remote_action.lng'; |
| | | include($lng_file); |
| | | include $lng_file; |
| | | |
| | | /* |
| | | * We need a list of all Servers |
| | | */ |
| | | |
| | | $sysServers = $app->db->queryAllRecords("SELECT server_id, server_name FROM server order by server_name"); |
| | | $dropDown = "<option value='*'>" . $wb['select_all_server'] . "</option>"; |
| | | foreach ($sysServers as $server) { |
| | |
| | | /* |
| | | * If the user wants to do the action, write this to our db |
| | | */ |
| | | if (isset($_POST['server_select'])) { |
| | | |
| | | //* Note: Disabled post action |
| | | if (1 == 0 && isset($_POST['server_select'])) { |
| | | |
| | | //* CSRF Check |
| | | $app->auth->csrf_token_check(); |
| | | |
| | | $server = $_POST['server_select']; |
| | | $servers = array(); |
| | | if ($server == '*') { |
| | |
| | | } |
| | | foreach ($servers as $serverId) { |
| | | $sql = "INSERT INTO sys_remoteaction (server_id, tstamp, action_type, action_param, action_state, response) " . |
| | | "VALUES (". |
| | | (int)$serverId . ", " . |
| | | time() . ", " . |
| | | "'ispc_update', " . |
| | | "'', " . |
| | | "'pending', " . |
| | | "''" . |
| | | ")"; |
| | | $app->db->query($sql); |
| | | "VALUES (?, UNIX_TIMESTAMP(), 'ispc_update', '', 'pending', '')"; |
| | | $app->db->query($sql, $serverId); |
| | | } |
| | | $msg = $wb['action_scheduled']; |
| | | } |
| | | |
| | | $app->tpl->setVar('msg',$msg); |
| | | $app->tpl->setVar('msg', $msg); |
| | | |
| | | //* SET csrf token |
| | | $csrf_token = $app->auth->csrf_token_get('ispupdate'); |
| | | $app->tpl->setVar('_csrf_id',$csrf_token['csrf_id']); |
| | | $app->tpl->setVar('_csrf_key',$csrf_token['csrf_key']); |
| | | |
| | | $app->tpl->setVar($wb); |
| | | |
| | |
| | | $app->tpl->pparse(); |
| | | |
| | | |
| | | ?> |
| | | ?> |