| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/auth.php");
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/languages/" . HTML_LANG . ".php");
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/idfilter.php");
- $device = get_record($db_link, 'devices', "id = ?", [$id]);
- $user_info = get_record_sql($db_link, "SELECT * FROM user_list WHERE id = ?", [$device['user_id']]);
- // Удаление подсетей шлюза
- if (getPOST("s_remove") !== null) {
- $s_id = getPOST("gs_id", null, []);
-
- if (!empty($s_id) && is_array($s_id)) {
- foreach ($s_id as $val) {
- $val = trim($val);
- if ($val === '') continue;
-
- delete_record($db_link, "gateway_subnets", "id = ?", [(int)$val]);
- }
- }
-
- header("Location: " . $_SERVER["REQUEST_URI"]);
- exit;
- }
- // Добавление подсети к шлюзу
- if (getPOST("s_create") !== null) {
- $new_subnet = trim(getPOST("new_subnet", null, ''));
-
- if ($new_subnet !== '') {
- $new = [
- 'subnet_id' => $new_subnet,
- 'device_id' => $id
- ];
-
- insert_record($db_link, "gateway_subnets", $new);
- }
-
- header("Location: " . $_SERVER["REQUEST_URI"]);
- exit;
- }
- unset($_POST);
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/header.php");
- print_device_submenu($page_url);
- print_editdevice_submenu($page_url,$id,$device['device_type'],$user_info['login']);
- ?>
- <div id="contsubmenu">
- <br>
- <?php print "<form name=def action='edit_gw_subnets.php?id=".$id."' method=post>"; ?>
- <?php
- if ($device['device_type'] == 0) { print WEB_list_l3_networks; } else { print WEB_list_gateway_subnets."<b>"; }
- print_url($device['device_name'],"/admin/devices/editdevice.php?id=$id"); ?>
- </b> <br>
- <table class="data">
- <tr align="center">
- <td></td>
- <td width=10><b>id</b></td>
- <td><b><?php echo WEB_network_subnet; ?></b></td>
- <td>
- <input type="submit" onclick="return confirm('<?php print WEB_msg_delete; ?>?')" name="s_remove" value="<?php print WEB_btn_remove; ?>">
- </td>
- </tr>
- <?php
- $gateway_subnets = get_records_sql($db_link,'SELECT gateway_subnets.*,subnets.subnet,subnets.description FROM gateway_subnets LEFT JOIN subnets ON gateway_subnets.subnet_id = subnets.id WHERE gateway_subnets.device_id=?', [$id]);
- foreach ( $gateway_subnets as $row ) {
- print "<tr align=center>\n";
- print "<td class=\"data\" style='padding:0' width=30><input type=checkbox name=gs_id[] value='{$row['id']}'></td>\n";
- print "<td class=\"data\"><input type=\"hidden\" name='n_id[]' value='{$row['id']}'>{$row['id']}</td>\n";
- print "<td class=\"data\">"; print get_subnet_description($db_link,$row['subnet_id']); print "</td>\n";
- print "<td></td></tr>\n";
- }
- ?>
- <tr>
- <td colspan=3><?php print WEB_btn_add; print_add_gw_subnets($db_link,$id,"new_subnet"); ?>
- </td>
- <td>
- <input type="submit" name="s_create" value="<?php echo WEB_btn_add; ?>">
- </td>
- </tr>
- </table>
- </form>
- <?php
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/footer.php");
- ?>
|