| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/auth.php");
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/languages/" . HTML_LANG . ".php");
- unset($_POST);
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/header.php");
- print_device_submenu($page_url);
- ?>
- <script>
- $.getScript("/js/jstree/jstree.min.js")
- .fail(function(jqxhr, settings, exception) {
- window.location.href = '/admin/devices/index-tree-simple.php';
- });
- </script>
- <div id="cont">
- <br>
- <?php
- function print_child($device_id,$hash)
- {
- foreach ($hash as $device) {
- if (!isset($device['parent_id'])) { continue; }
- if ($device['parent_id'] !== $device_id) { continue; }
- $dev_icon = '/img/server.png';
- if ($device['type'] == 0) { $dev_icon = '/img/router.png'; }
- if ($device['type'] == 1) { $dev_icon = '/img/switch16.png'; }
- if ($device['type'] == 2) { $dev_icon = '/img/gateway.png'; }
- if ($device['type'] == 3) { $dev_icon = '/img/server.png'; }
- if ($device['type'] == 4) { $dev_icon = '/img/ap.png'; }
- print '{ "text" : "'; print $device['parent_port'].'->'.$device['uplink'].' '.$device['name']; print '", "icon" : "'.$dev_icon.'", "id" : "'.$device['id'].'","state" : { "opened" : true },';
- print '"a_attr" : { "href": "'.reencodeurl('/admin/devices/editdevice.php?id='.$device['id']).'"},';
- print '"children" : ['; print_child($device['id'],$hash); print ']';print "},\n";
- }
- }
- $dSQL = 'SELECT * FROM devices WHERE deleted=0 and device_type<=2';
- $switches = get_records_sql($db_link,$dSQL);
- $dev_hash = NULL;
- foreach ($switches as $row) {
- $dev_id=$row['id'];
- $dev_hash[$dev_id]['id']=$dev_id;
- $dev_hash[$dev_id]['name']=$row['device_name'];
- $dev_hash[$dev_id]['type']=$row['device_type'];
- $pSQL = 'SELECT * FROM device_ports WHERE uplink = 1 and device_id='.$dev_id;
- $uplink = get_record_sql($db_link,$pSQL);
- if (empty($uplink)) { continue; }
- if (empty($uplink['target_port_id'])) { continue; }
- //$dev_hash[$dev_id]['uplink']=$uplink['ifName'];
- $dev_hash[$dev_id]['uplink']=$uplink['port_name'];
- $parentSQL='SELECT * FROM device_ports WHERE device_ports.id='.$uplink['target_port_id'];
- $parent=get_record_sql($db_link,$parentSQL);
- $dev_hash[$dev_id]['parent_id']=$parent['device_id'];
- //$dev_hash[$dev_id]['parent_port']=$parent['ifName'];
- $dev_hash[$dev_id]['parent_port']=$parent['port_name'];
- }
- print '<div id="frmt" class="tree"></div>';
- print "\n";
- print '<script>';
- print "$('#frmt').jstree({";
- print '"themes" : { "theme" : "default", "dots" : false, "icons" : false }, "plugins" : [ "themes", "html_data", "ui", "sort" ],';
- print "'core' : { 'data' : [";
- print "\n";
- foreach ($dev_hash as $device) {
- if (isset($device['parent_id'])) { continue; }
- $dev_icon = '/img/server.png';
- if ($device['type'] == 0) { $dev_icon = '/img/router.png'; }
- if ($device['type'] == 1) { $dev_icon = '/img/switch16.png'; }
- if ($device['type'] == 2) { $dev_icon = '/img/gateway.png'; }
- if ($device['type'] == 3) { $dev_icon = '/img/server.png'; }
- if ($device['type'] == 4) { $dev_icon = '/img/ap.png'; }
- print '{ "text" : "'; print_url($device['name'],'/admin/devices/editdevice.php?id='.$device['id']); print '","icon" : "'.$dev_icon.'", "id" : "'.$device['id'].'" ,"state" : { "opened" : true },';
- print '"a_attr" : { "href": "'.reencodeurl('/admin/devices/editdevice.php?id='.$device['id']).'"},';
- print '"children" : ['; print_child($device['id'],$dev_hash); print "]";
- print "},\n";
- }
- ?>
- ]}
- }).on('changed.jstree', function (e, data) {
- if (data == null) return '';
- if (data.node == null) return '';
- var href = data.node.a_attr.href;
- var parentId = data.node.a_attr.parent_id;
- if(href == '#') return '';
- var win = window.open(href, "_blank");
- });
- </script>
- <?php
- require_once ($_SERVER['DOCUMENT_ROOT']."/inc/footer.php");
- ?>
|