| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/auth.php");
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/languages/" . $language . ".php");
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/idfilter.php");
- $sSQL = "SELECT * FROM devices WHERE id=$id";
- $device_info = get_record_sql($db_link, $sSQL);
- if (isset($_POST["s_remove"])) {
- $s_id = $_POST["s_id"];
- foreach ($s_id as $key => $val) {
- if (isset($val)) {
- LOG_INFO($db_link, "Remove l3_interface id: $val");
- delete_record($db_link, "device_l3_interfaces", "id=" . $val);
- }
- }
- header("Location: " . $_SERVER["REQUEST_URI"]);
- exit;
- }
- if (isset($_POST['s_save'])) {
- $len = is_array($_POST['s_save']) ? count($_POST['s_save']) : 0;
- for ($i = 0; $i < $len; $i ++) {
- $save_id = intval($_POST['s_save'][$i]);
- $len_all = is_array($_POST['n_id']) ? count($_POST['n_id']) : 0;
- for ($j = 0; $j < $len_all; $j ++) {
- if (intval($_POST['n_id'][$j]) != $save_id) { continue; }
- $new['name'] = trim($_POST['s_name'][$j]);
- $new['interface_type'] = $_POST['s_type'][$j]*1;
- update_record($db_link, "device_l3_interfaces", "id='{$save_id}'", $new);
- }
- }
- header("Location: " . $_SERVER["REQUEST_URI"]);
- exit;
- }
- if (isset($_POST["s_create"])) {
- if (!empty($_POST["s_create_name"])) {
- $new['name'] = trim($_POST["s_create_name"]);
- $new['device_id'] = $id;
- $new['interface_type'] = 0;
- LOG_INFO($db_link, "Create new l3_interface ".$new['name']." as local");
- insert_record($db_link, "device_l3_interfaces", $new);
- }
- header("Location: " . $_SERVER["REQUEST_URI"]);
- exit;
- }
- unset($_POST);
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/header.php");
- ?>
- <div id="cont">
- <br>
- <form name="def" action="edit_l3int.php" method="post">
- <b>Список L3 интерфейсов <?php print_url($device_info['device_name'],"/admin/devices/editdevice.php?id=$id"); ?></b> <br>
- <table class="data">
- <tr align="center">
- <td></td>
- <td width=30><b>id</b></td>
- <td><b>Название</b></td>
- <td><b>Тип</b></td>
- <td><input type="submit" onclick="return confirm('Удалить?')" name="s_remove" value="Удалить"></td>
- </tr>
- <?php
- $t_l3_interface = get_records($db_link,'device_l3_interfaces',"device_id=$id ORDER BY name");
- foreach ( $t_l3_interface as $row ) {
- print "<tr align=center>\n";
- print "<td class=\"data\" style='padding:0'><input type=checkbox name=s_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\"><input type=\"text\" name='s_name[]' value='{$row['name']}'></td>\n";
- print "<td class=\"data\">"; print_qa_l3int_select('s_type[]',$row['interface_type']); print "</td>\n";
- print "<td class=\"data\"><button name='s_save[]' value='{$row['id']}'>Сохранить</button></td>\n";
- print "</tr>\n";
- }
- ?>
- <tr>
- <td colspan=4>Добавить интерфейс :<?php print "<input type=\"text\" name='s_create_name' value=''";?>
- </td>
- <td><input type="submit" name="s_create" value="Добавить"></td>
- </tr>
- </table>
- </form>
- <?php
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/footer.php");
- ?>
|