Magellan Linux

Diff of /alx-src/branches/alx-web-070/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 8557 by niro, Mon Feb 8 14:15:45 2016 UTC revision 13242 by niro, Tue Jul 9 15:21:55 2019 UTC
# Line 3  Line 3 
3  include('include/basesql.php');  include('include/basesql.php');
4  include('include/common-functions.php');  include('include/common-functions.php');
5    
6  session_start();  if(session_status() !== PHP_SESSION_ACTIVE) session_start();
7  //session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');  //session_register('alx_sort_krit'); session_register('alx_sort_onfirst'); session_register('alx_sort_loc');
8  $_SESSION['alx_sort_krit'] = $alx_sort_krit;  if(isset($_SESSION['alx_sort_krit'])) $alx_sort_krit = $_SESSION['alx_sort_krit'];
9  $_SESSION['alx_sort_onfirst'] = $alx_sort_onfirst;  if(isset($_SESSION['alx_sort_onfirst'])) $alx_sort_onfirst = $_SESSION['alx_sort_onfirst'];
10  $_SESSION['alx_sort_loc'] = $alx_sort_loc;  if(isset($_SESSION['alx_sort_loc'])) $alx_sort_loc = $_SESSION['alx_sort_loc'];
11    
12    // fix reload php debug message
13    if(!isset($reload)) $reload = 'not set';
14    
15  $locations = sqlarr('SELECT location FROM client_locations where enabled="1"', '', 'location');  $locations = sqlarr('SELECT location FROM client_locations where enabled="1"', '', 'location');
16  $locations[] = '';  $locations[] = '';
# Line 53  function sortcomp($a,$b) Line 56  function sortcomp($a,$b)
56    
57   if($_SESSION['alx_sort_onfirst'])   if($_SESSION['alx_sort_onfirst'])
58   {   {
59   if($a['online'] && !$b['online']) return -1;   if(isset($a['online']) && !isset($b['online'])) return -1;
60   if($b['online'] && !$a['online']) return 1;   if(isset($b['online']) && !isset($a['online'])) return 1;
61   }   }
62   if($_SESSION['alx_sort_krit']=='hostname')   if($_SESSION['alx_sort_krit']=='hostname')
63   {   {
# Line 111  echo '</form>'; Line 114  echo '</form>';
114    
115  echo '<table border="1" id="mytab">';  echo '<table border="1" id="mytab">';
116  echo '<thead><tr style="font-weight:bold;background-color:#d5e5ff"><th>edit</th><th colspan=3>serial</th><th width=170>hostname</th><th width=100>ip</th><th width=100>mac</th><th width=100>last connected</th>';  echo '<thead><tr style="font-weight:bold;background-color:#d5e5ff"><th>edit</th><th colspan=3>serial</th><th width=170>hostname</th><th width=100>ip</th><th width=100>mac</th><th width=100>last connected</th>';
117  echo '<th colspan=2>version</th>';  echo '<th colspan=3>version</th>';
118  echo '<th width=100>boot</th>';  echo '<th width=100>boot</th>';
119  echo '<th width=150>up/down</th></tr></thead><tbody>';  echo '<th width=150>up/down</th></tr></thead><tbody>';
120    
121  foreach($comps as $c)  foreach($comps as $c)
122  {  {
123   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;   $alxinfo = array();
124    
125     if(!isset($_SESSION['alx_sort_loc'][$c['location']])) Continue;
126   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
127    
128   if($c['online']) $pic='online';   if(isset($c['online'])) $pic='online';
129   else $pic='offline';   else $pic='offline';
130    
131   if($c['enabled']==0)   if($c['enabled']==0)
# Line 143  foreach($comps as $c) Line 148  foreach($comps as $c)
148    
149   // get alx version info for   // get alx version info for
150   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);
151   $alxver = $alxinfo[os];   if (isset($alxinfo['os'])) $alxver = $alxinfo['os'];
152   $alxutils = $alxinfo[utils];   else $alxver = 'unknown';
153     if (isset($alxinfo['utils'])) $alxutils = $alxinfo['utils'];
154     else $alxutils = 'unknown';
155    
156   if($alxver == '') $alxver='unknown';   if (isset($alxinfo['arch'])) $alxarch = $alxinfo['arch'];
157   if($alxutils == '') $alxutils='unknown';   else $alxarch = 'unknown';
158    
159   echo '<td>'.$alxver.'</td>';   echo '<td>'.$alxver.'</td>';
160   echo '<td>'.$alxutils.'</td>';   echo '<td>'.$alxutils.'</td>';
161     echo '<td>'.$alxarch.'</td>';
162    
163   // netboot state   // netboot state
164   if($c['netboot'] == 1) echo '<td>Netboot (PXE)</td>';   if($c['netboot'] == 1) echo '<td>Netboot (PXE)</td>';
165   else echo '<td>Local Disk</td>';   else echo '<td>Local Disk</td>';
166    
167   echo '<td>';   echo '<td>';
168   if($c['online'])   if(isset($c['online']))
169   {   {
170   echo '<input type=button style="width:24%" value="RB" onclick="if(confirm(\'REBOOT CLIENT #'.$c['serial'].' ?\')) window.open(\'reboot.php?client='.$c['serial'].'&ip='.$c['ip'].'&op=reboot\', \'ShutdownWin\', \'width=200,height=100\')">';   echo '<input type=button style="width:24%" value="RB" onclick="if(confirm(\'REBOOT CLIENT #'.$c['serial'].' ?\')) window.open(\'reboot.php?client='.$c['serial'].'&ip='.$c['ip'].'&op=reboot\', \'ShutdownWin\', \'width=200,height=100\')">';
171   echo '<input type=button style="width:24%" value="SD" onclick="if(confirm(\'SHUTDOWN CLIENT #'.$c['serial'].' ?\')) window.open(\'reboot.php?client='.$c['serial'].'&ip='.$c['ip'].'&op=halt\', \'ShutdownWin\', \'width=200,height=100\')">';   echo '<input type=button style="width:24%" value="SD" onclick="if(confirm(\'SHUTDOWN CLIENT #'.$c['serial'].' ?\')) window.open(\'reboot.php?client='.$c['serial'].'&ip='.$c['ip'].'&op=halt\', \'ShutdownWin\', \'width=200,height=100\')">';

Legend:
Removed from v.8557  
changed lines
  Added in v.13242