Magellan Linux

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

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

revision 9459 by niro, Mon Feb 8 14:15:45 2016 UTC revision 9460 by niro, Thu Apr 6 12:34:29 2017 UTC
# Line 5  include('include/common-functions.php'); Line 5  include('include/common-functions.php');
5    
6  session_start();  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 120  foreach($comps as $c) Line 123  foreach($comps as $c)
123   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
124   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
125    
126   if($c['online']) $pic='online';   if(isset($c['online'])) $pic='online';
127   else $pic='offline';   else $pic='offline';
128    
129   if($c['enabled']==0)   if($c['enabled']==0)
# Line 143  foreach($comps as $c) Line 146  foreach($comps as $c)
146    
147   // get alx version info for   // get alx version info for
148   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);   $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$c['serial']);
149   $alxver = $alxinfo[os];   if (isset($alxinfo[os])) $alxver = $alxinfo[os];
150   $alxutils = $alxinfo[utils];   else $alxver = 'unknown';
151     if (isset($alxinfo[utils])) $alxutils = $alxinfo[utils];
152   if($alxver == '') $alxver='unknown';   else $alxutils = 'unknown';
  if($alxutils == '') $alxutils='unknown';  
153    
154   echo '<td>'.$alxver.'</td>';   echo '<td>'.$alxver.'</td>';
155   echo '<td>'.$alxutils.'</td>';   echo '<td>'.$alxutils.'</td>';
# Line 157  foreach($comps as $c) Line 159  foreach($comps as $c)
159   else echo '<td>Local Disk</td>';   else echo '<td>Local Disk</td>';
160    
161   echo '<td>';   echo '<td>';
162   if($c['online'])   if(isset($c['online']))
163   {   {
164   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\')">';
165   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.9459  
changed lines
  Added in v.9460