Magellan Linux

Contents of /alx-src/branches/alx-web-070/show.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7115 - (show annotations) (download)
Fri Sep 11 12:33:25 2015 UTC (8 years, 7 months ago) by niro
File size: 21017 byte(s)
-added default keymap list
1 <?
2 // INCLUDE UND TABELLEN-DEFINITIONEN
3 include('include/basesql.php');
4 include('include/common-functions.php');
5
6 // INCLUDE CURRENT-PROBLEMS
7 include('include/current-problems.php');
8
9 $tabs = array('cfg_graphic', 'cfg_network', 'cfg_input', 'client_auth', 'cfg_autostart', 'client_serials', 'cfg_comments', 'cfg_printers', 'cfg_sessions', 'cfg_modules', 'cfg_other_menuitems', 'cfg_screensaver', 'client_version', 'cfg_plugins');
10 $multi= array( 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1);
11 $data = array();
12
13 // get alx version info for
14 $alxinfo = sqlfirst('SELECT * FROM client_version WHERE serial='.$id);
15 $alxos = $alxinfo[os];
16 $alxutils = $alxinfo[utils];
17
18 // get gfxdriver
19 $gfxinfo = sqlfirst('SELECT * FROM cfg_graphic WHERE serial='.$id);
20
21 if($kill==1)
22 {
23 foreach($tabs as $t) mysql_query('UPDATE '.$t.' SET serial=-serial WHERE serial='.$id);
24
25 echo '<body onload="window.setTimeout(\'window.close()\', 1750)">';
26 echo '<table width=100% height=100% style="border:solid black 1px; background-color:#d5e5ff"><tr><td valign=middle align=center>';
27
28 if($id<0) echo 'ACTIVATED #'.abs($id);
29 else echo 'DEACTIVATED #'.$id;
30
31 echo '</td></tr></table>';
32 return true;
33 }
34
35 // FELD-DEFINITIONEN (ARRAY=>DROPDOWN / HIDDEN / IGNORE / 1 / BOLD / PASSWORD / SHOW / SHOWTIME / MONITORID)
36 $drop = array();
37 $drop['cfg_graphic_module'] = sqlarr('SELECT value FROM values_graphic_module where enabled=1', '', 'value');
38 if($gfxinfo[module] == 'intel')
39 {
40 $drop['cfg_graphic_hdmi'] = array('disable', 'enable');
41 }
42 else
43 {
44 $drop['cfg_graphic_hdmi'] = 'ignore';
45 }
46 $drop['resolution'] = sqlarr('SELECT value FROM values_graphic_resolution where enabled=1', '', 'value');
47 $drop['depth'] = sqlarr('SELECT value FROM values_graphic_depth where enabled=1', '', 'value');
48 $drop['mouse'] = array('Auto', 'IMPS/2', 'PS/2');
49 $drop['keyboard'] = array('PC105');
50 $drop['keymap'] = sqlarr('SELECT value FROM values_input_keymap where enabled=1', '', 'value');
51 $drop['cfg_network_module'] = sqlarr('SELECT value FROM values_network_module where enabled=1', '', 'value');
52 $drop['networking'] = array('dhcp', 'static');
53 $drop['port'] = sqlarr('SELECT value FROM values_printers_port where enabled=1', '', 'value');
54 for ($i=0; $i<999; $i++) { $drop['cfg_printers_'.$i.'_ip'] = 'ignore'; }
55 $drop['share'] = 'ignore';
56 $drop['location'] = sqlarr('SELECT location FROM client_locations where enabled=1', '', 'location');
57 $drop['id'] = 'hidden';
58 $drop['flg_modified'] = '1';
59 $drop['serial'] = 'ignore';
60 $drop['monitorid'] = 'ignore';
61 $drop['refresh_rate'] = sqlarr('SELECT value FROM values_graphic_refresh_rate where enabled=1', '', 'value');
62 $drop['hostname'] = 'bold';
63 $drop['session'] = 'bold';
64 $drop['cfg_autostart_session'] = sqlarr('SELECT filename FROM cfg_sessions where serial='.$id, '', 'filename');
65 array_unshift($drop['cfg_autostart_session'], "");
66 $drop['mtime'] = 'showtime';
67 $drop['mac'] = 'show';
68 $drop['client_serials_serial'] = 'show';
69 $drop['password'] = 'password';
70 $drop['shell'] = 'password';
71 $drop['vnc'] = 'password';
72 $drop['samba'] = 'password';
73 $drop['station'] = 'password';
74 $drop['txt'] = 'txt';
75 $drop['screensaver'] = sqlarr('SELECT value FROM values_screensaver_screensaver where enabled=1', '', 'value');
76 $drop['iface'] = array('eth0', 'wlan0');
77 $drop['client_version_os'] = 'show';
78 $drop['client_version_utils'] = 'show';
79
80 // ACHTUNG!!! wlan_-Felder heißen eigentlich wireless_
81 $drop['wireless_mode'] = array('', 'managed', 'ad-hoc', 'master', 'repeater', 'secondary', 'monitor', 'auto');
82 $drop['wireless_auth_mode'] = array('', 'wep', 'wpa', 'wpa2', 'off');
83 $drop['wireless_key_length'] = array('', '64', '128', '256');
84 $drop['wireless_channel'] = array('', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14');
85 $drop['wireless_frequency'] = array('', '2.412G', '2.417G', '2.422G', '2.427G', '2.432G', '2.437G', '2.442G',
86 '2.447G', '2.452G', '2.457G', '2.462G', '2.467G', '2.472G', '2.484G');
87 $drop['wireless_key'] = 'password';
88 $drop['wireless_key_ascii'] = 'password';
89
90 // plugin support
91 for ($i=0; $i<999; $i++) { $drop['cfg_plugins_'.$i.'_plugin'] = 'pluginconfig'; }
92 for ($i=0; $i<999; $i++)
93 {
94 $drop['cfg_plugins_'.$i.'_plugin_array'] = sqlarr('SELECT plugin FROM avail_plugins', '', 'plugin');
95 array_unshift($drop['cfg_plugins_'.$i.'_plugin_array'], "");
96 }
97
98 // get current citrix sessions
99 // split all citrix server into an array to get the first server from list
100 $citrix_query_browser = split(";", $citrix_browseradrs);
101 exec($wwwroot.'/pnabrowse-wrapper -A '.$citrix_query_browser[0], $returned_citrix_sessions, $retval);
102 if ($retval == 0)
103 {
104 $citrix_public_applications = str_replace("'", "", $returned_citrix_sessions);
105 // add an empty value add the first position of the array as session-default
106 array_unshift($citrix_public_applications, "");
107 for ($i=0; $i<999; $i++) { $drop['cfg_sessions_'.$i.'_session'] = $citrix_public_applications; }
108 }
109
110 // GGF. NEUEN DATENSATZ EINFÜGEN
111 if(isset($_POST['do_add']))
112 {
113 list($bla,$what) = explode(' ',$_POST['do_add']);
114 if($what=='COMMENT') sqladd('cfg_comments', array('serial'=>$id));
115 else if($what=='PRINTER') sqladd('cfg_printers', array('serial'=>$id));
116 else if($what=='MODULE') sqladd('cfg_modules', array('serial'=>$id));
117 else if($what=='SESSION') sqladd('cfg_sessions', array('domain'=>$citrix_domain_name, 'browseradrs'=>$citrix_browseradrs, 'serial'=>$id));
118 else if($what=='MENUITEM') sqladd('cfg_other_menuitems', array('serial'=>$id));
119 else if($what=='PLUGIN') sqladd('cfg_plugins', array('serial'=>$id));
120 }
121
122
123 // GGF. SPEICHERN
124 if($_POST['do_upl'])
125 {
126 function postarr($prefix)
127 {
128 $prefix.='_';
129 $prelen = strlen($prefix);
130
131 $arr = array();
132 foreach($_POST as $k=>$v)
133 if((substr($k,0,$prelen)==$prefix) && ($v!='KEEPPASS'))
134 $arr[substr($k,$prelen)] = stripslashes($v);
135
136 return $arr;
137 }
138
139 foreach($tabs as $k=>$t)
140 {
141 if(!$multi[$k]) mysql_query('UPDATE '.$t.' SET '.updatestr(postarr($t)).' WHERE serial='.$id);
142 else
143 {
144 $i=0;
145 while(isset($_POST[$t.'_'.$i.'_id']))
146 {
147 if($_POST[$t.'_'.$i.'_delete'])
148 mysql_query('DELETE FROM '.$t.' WHERE serial='.$id.' AND id='.$_POST[$t.'_'.$i.'_id']);
149 else
150 mysql_query('UPDATE '.$t.' SET '.updatestr(postarr($t.'_'.$i)).' WHERE serial='.$id.' AND id='.$_POST[$t.'_'.$i.'_id']);
151 $i++;
152 }
153 }
154 }
155
156 // reload site
157 header("location: show.php?id=".$id);
158 }
159
160 // EINLESEN DER DATEN AUS SQL-TABELLEN
161 foreach($tabs as $k=>$t)
162 {
163 if($multi[$k]) $data[$t] = sqlarr('SELECT * FROM '.$t.' WHERE serial='.$id);
164 else $data[$t] = sqlfirst('SELECT * FROM '.$t.' WHERE serial='.$id);
165 }
166
167 // ANZEIGEN - KLAPPFUNKTIONEN
168 $absnames = array();
169
170 function openabs($heading, $helpfile='')
171 {
172 global $absnames;
173 $absnames[] = $heading;
174
175 // <AufZuLink> <Bild/> <Heading/> </AufZuLink><BR/> <Absatz>
176
177 if( $_SESSION['openclose'][$heading] )
178 {
179 echo '<a href="JavaScript:openclose(\''.$heading.'\',1);"><img border="0" src="pics/minus.gif" title="CLOSE" id="sch_bild_'.$heading.'"> <b>['.$heading.']</b></a>';
180 if($helpfile!='') echo ' <a href="JavaScript:showhelp(\''.$helpfile.'\')" title="HELP">[?]</a>';
181 echo '<br><div id="sch_absatz_'.$heading.'" style="top:0px; visibility:visible">';
182 }
183 else
184 {
185 echo '<a href="JavaScript:openclose(\''.$heading.'\',1);"><img border="0" src="pics/plus.gif" title="OPEN" id="sch_bild_'.$heading.'"> <b>['.$heading.']</b></a>';
186 if($helpfile!='') echo ' <a href="JavaScript:showhelp(\''.$helpfile.'\')" title="HELP">[?]</a>';
187 echo '<br><div id="sch_absatz_'.$heading.'" style="position:absolute; top:0px; visibility:hidden">';
188 }
189 }
190
191 function closeabs()
192 {
193 // </Absatz> <BR/>
194
195 echo '</div><br>';
196 }
197
198
199 // ANZEIGEN
200
201 function parsearr($name, $arr, $del=false, $wireless=false)
202 {
203 global $drop;
204 global $id;
205 global $alxos;
206
207 $parts = explode('_',$name); $helpfile='help.php?page='.$parts[1];
208 openabs($name, $helpfile);
209 echo '<table class="keytab">';
210
211 foreach($arr as $k=>$v)
212 {
213 if( (substr($k,0,9)=='wireless_') xor $wireless ) Continue;
214
215 $d = $drop[$name.'_'.$k]; if($d==null) $d = $drop[$k];
216 $k = str_replace('wireless_', '', $k);
217 $k2 = $k;
218
219 # tell something about vesa
220 if ($v == 'vesa') echo '<br><font color="#FF0000">Warning: "vesa" graphic module doesn\'t support any resolutions higher than 1024x786x16@60hz!</font><br>';
221
222 if(is_array($d))
223 {
224 echo '<tr><td class="key">'.$k2.'</td><td>= <select style="width:144px" name="'.$name.'_'.$k.'">';
225 foreach($d as $di) if($v==$di) echo '<option selected>'.$di; else echo '<option>'.$di;
226 echo '</select></td></tr>';
227 }
228 else if($d=='hidden') echo '<tr><td colspan=2><input type=hidden name="'.$name.'_'.$k.'" value="'.$v.'"></td></tr>';
229 else if($d=='1') echo '<tr><td colspan=2><input type=hidden name="'.$name.'_'.$k.'" value="1"></td></tr>';
230 else if($d=='monitorid') echo '<tr><td class="key">'.$k2.'</td><td>= <input type=button style="width:24px" onclick="window.open(\'monitor.php?id='.$id.'\', \'MonitorWin\', \'width=350,height=200\')" value="..."></td>';
231 else if($d=='pluginconfig')
232 {
233 $dplugin = $drop[$name.'_'.$k.'_array']; if($dplugin==null) $dplugin = $drop[$k];
234 if(is_array($dplugin))
235 {
236 echo '<tr><td class="key">'.$k2.'</td><td>= <select style="width:144px" name="'.$name.'_'.$k.'">';
237 foreach($dplugin as $di) if($v==$di) echo '<option selected>'.$di; else echo '<option>'.$di;
238 echo '</select></td></tr>';
239 }
240 // $v contains the pluginname, get the configure flag
241 $pflag = sqlfirst('SELECT configflag FROM avail_plugins WHERE plugin="'.$v.'"');
242 if ($pflag[configflag]==1) echo '<tr><td class="key">configure</td><td>= <input type=button style="width:24px" onclick="window.open(\'plugin.php?id='.$id.'&plugin='.$v.'\', \'PluginWin\', \'width=500,height=400\')" value="..."></td>';
243 }
244 else if($d=='bold') echo '<tr><td class="key">'.$k2.'</td><td>= <input style="width:144px;font-weight:bold" name="'.$name.'_'.$k.'" value="'.$v.'"></td></tr>';
245 else if($d=='filename') echo '<tr><td class="key">filename</td><td>= <input style="width:144px;font-weight:bold" name="'.$name.'_'.$k.'" value="'.$v.'"></td></tr>';
246 else if($d=='show') echo '<tr><td class="key">'.$k2.'</td><td>= <b>'.$v.'</b></td></tr>';
247 else if($d=='showtime') echo '<tr><td class="key">'.$k2.'</td><td>= <b>'.date('d.m.y - H:i:s', $v).'</b></td></tr>';
248 else if($d=='password' && $v=='') echo '<tr><td class="key">'.$k2.'</td><td>= <input type=password style="width:144px" name="'.$name.'_'.$k.'" value=""></td></tr>';
249 else if($d=='password') echo '<tr><td class="key">'.$k2.'</td><td>= <input type=password style="width:144px" name="'.$name.'_'.$k.'" value="KEEPPASS"></td></tr>';
250 else if($d=='txt') echo '<tr><td colspan=2><textarea style="width:240px; background-color:#d5e5ff" rows=6 name="'.$name.'_'.$k.'">'.$v.'</textarea></td></tr>';
251 else if($d!='ignore') echo '<tr><td class="key">'.$k2.'</td><td>= <input style="width:144px" name="'.$name.'_'.$k.'" value="'.$v.'"></td></tr>';
252 }
253
254 if($del) echo '<tr><td class="key">delete</td><td>=<input type=checkbox name="'.$name.'_delete" value="1"></td></tr>';
255 echo '</table>';
256 closeabs();
257
258 if($name=='cfg_network' && !$wireless) parsearr($name.'_wireless', $arr, $del, true);
259 }
260
261 function parsearrs($name, $arr)
262 {
263 foreach($arr as $k=>$a)
264 parsearr($name.'_'.$k, $a, true);
265 }
266
267 ?><head>
268 <title>ALX Config</title>
269 <style>
270 body,table { font-family:Tahoma; font-size:10pt }
271 a { color:#000000; text-decoration:none; }
272 .key { width:85px }
273 .keytab, input, textarea, select, option { font-size:8pt; font-family:Tahoma }
274 .but { font-size:10pt; font-family:Tahoma; height:23px }
275 </style>
276 <script type="text/javascript" src="js/jquery-1.2.6.min.js"></script>
277 <script language="JavaScript" src="openclose_ajax.js"></script>
278 <script language="JavaScript">
279
280 // opens an url and shows retval in a javascript-alert on current site
281 function urlopen(url,typ) {
282 var $url = url.split("?");
283 $.ajax({type:""+typ+"",url:$url[0],data:$url[1],cache:false,success:function(data){ alert(data); }});
284 }
285 function plugin(name,id) { window.open('plugin.php?plugin='+name+'&id='+id, '', 'width=350,height=180'); }
286
287 /* ignore this atm, not always working, sometime open does not work
288 function openclose(nummer, act)
289 {
290 var bild = document.images['sch_bild_'+nummer];
291 var absatz = document.all['sch_absatz_'+nummer].style;
292 var senden = false;
293
294 $("#sch_absatz_"+nummer).toggle(0, function(){
295 if($(this).css("display")=="none"){$("#sch_bild_"+nummer).attr({title:'OPEN',src:'pics/plus.gif'});}else{$("#sch_bild_"+nummer).attr({title:'CLOSE',src:'pics/minus.gif'});}
296 });
297 if(act<=1){ $("#sch_bild_"+nummer).attr({title:'CLOSE',src:'pics/minus.gif'}); }else{ $("#sch_bild_"+nummer).attr({title:'OPEN',src:'pics/plus.gif'}); };
298 }
299 */
300 function openclose(nummer, act)
301 {
302 var bild = document.images['sch_bild_'+nummer];
303 var absatz = document.all['sch_absatz_'+nummer].style;
304 var senden = false;
305
306 if(bild.title == 'OPEN')
307 {
308 if(act<=1)
309 {
310 absatz.visibility = 'visible';
311 absatz.position = '';
312 bild.title = 'CLOSE';
313 bild.src = 'pics/minus.gif';
314 senden = true;
315 act = 0;
316 }
317 }
318 else
319 {
320 if(act>=1)
321 {
322 absatz.visibility = 'hidden';
323 absatz.position = 'absolute';
324 bild.title = 'OPEN';
325 bild.src = 'pics/plus.gif';
326 senden = true;
327 act = 2;
328 }
329 }
330
331 if(senden) sendopenclose(nummer,act);
332 }
333
334 function showhelp(name)
335 { window.open(name, 'HelpWin', 'width=620,height=500,scrollbars=yes'); }
336
337 </script>
338 </head>
339
340 <body><?
341
342 echo '<form action="show.php" method="post" onreset="return confirm(\'UNDO CHANGES?\')">';
343 echo '<input type=hidden name="do_upl" value="1">';
344 echo '<input type=hidden name="id" value="'.$id.'">';
345
346 // ANZEIGEN => NON-MULTI TABELLEN
347 echo '<table><tr><td valign=top width="300">';
348
349 echo '<b style="font-size:6pt">';
350 echo '<a href="JavaScript:opencloseall(0);" title="OPEN ALL"><img src="pics/plus.gif" border="0"> OPEN...</a> ';
351 echo '<a href="JavaScript:opencloseall(2);" title="CLOSE ALL"><img src="pics/minus.gif" border="0"> CLOSE...</a> ALL';
352 echo '</b><br><br>';
353
354 foreach($tabs as $k=>$t) if(!$multi[$k]) parsearr($t, $data[$t]);
355
356 // ANZEIGEN => MULTI TABELLEN
357 echo '</td><td valign=top width="300">';
358
359 foreach($tabs as $k=>$t) if($multi[$k]) parsearrs($t, $data[$t]);
360
361 echo '<script language="JavaScript">';
362 echo 'function opencloseall(act) { ';
363
364 foreach($absnames as $absname)
365 echo 'openclose("'.$absname.'", act); ';
366
367 echo '}</script>';
368
369 // ANZEIGEN => NAVI
370 echo '</td><td valign=top>';
371
372 // STATUS BESTIMMEN (ON/OFF)
373 $conn = sqlfirst('SELECT * FROM state_connected WHERE serial='.$id);
374 $state = 'Off';
375 if(count($conn)>0)
376 {
377 if($retval==0) $state = 'On';
378 }
379
380 echo '<img src="pics/logo2.jpg"><br><br>';
381
382 echo '<input class="but" type=submit value="SAVE" style="width:150px"><br><br>';
383
384 echo '<input class="but" type=submit name="do_add" value="SAVE+ADD COMMENT" style="width:150px"><br>';
385 echo '<input class="but" type=submit name="do_add" value="SAVE+ADD PRINTER" style="width:150px"><br>';
386 echo '<input class="but" type=submit name="do_add" value="SAVE+ADD SESSION" style="width:150px"><br>';
387 echo '<input class="but" type=submit name="do_add" value="SAVE+ADD MODULE" style="width:150px"><br>';
388 echo '<input class="but" type=submit name="do_add" value="SAVE+ADD MENUITEM" style="width:150px"><br>';
389 if($alxos >= '0.6.0')
390 {
391 echo '<input class="but" type=submit name="do_add" value="INSTALL PLUGIN" style="width:150px"><br>';
392 }
393 echo '<br>';
394
395 if($id>0) $KILLCAP='DEACTIVATE'; else $KILLCAP='ACTIVATE';
396 echo '<input class="but" type=button value="'.$KILLCAP.'" style="width:150px" onclick="if(confirm(\''.$KILLCAP.' CLIENT #'.abs($id).' ?\')) { window.open(\'show.php?id='.$id.'&kill=1\', \'DeactWin\', \'width=200,height=100\'); location.href=\'index.php\'; }"><br>';
397 echo '<input class="but" type=button value="IMPORT FROM..." style="width:150px" onclick="location.href=\'import.php?id='.$id.'\'"><br>';
398 echo '<input class="but" type=reset value="UNDO CHANGES" style="width:150px"><br><br>';
399
400 $davor = sqlfirst('SELECT mac FROM client_serials WHERE serial='.($id-1),'mac')!=null; if($davor) $disdavor=''; else $disdavor = 'disabled=1';
401 $danach = sqlfirst('SELECT mac FROM client_serials WHERE serial='.($id+1),'mac')!=null; if($danach) $disdanach=''; else $disdanach = 'disabled=1';
402
403 echo '<input class="but" type=button '.$disdavor.' value="<" style="width:30px" onclick="location.href=\'show.php?id='.($id-1).'\'">';
404 echo '<input class="but" type=button value="REFRESH" style="width:90px" onclick="location.href=\'show.php?id='.$id.'\'">';
405 echo '<input class="but" type=button '.$disdanach.' value=">" style="width:30px" onclick="location.href=\'show.php?id='.($id+1).'\'">';
406 echo '<br><input class="but" type=button value="INDEX" style="width:150px; font-weight:bold" onclick="location.href=\'index.php\'"><br><br>';
407
408 echo '<br>';
409 echo '<div style="border:solid black 1px; padding:5px; background-color:#d5e5ff"><b>';
410 if($id<0) echo '<b>DEACTIVATED!</b><br><br>';
411 echo '<u>Serial:</u>&nbsp;&nbsp;#'.$id.'<br>';
412 echo '<u>Stand:</u>&nbsp;&nbsp;'.date('H:i:s').'<br>';
413 echo '<u>Status:</u> <img src="pics/'.strtolower($state).'line.gif" align=top> '.$state.'line<br>';
414 if($state=='On')
415 {
416 echo '<u>IP:</u> '.$conn['ip'].'<br><br>';
417 echo '<u>OS:</u> '.$alxos.'<br>';
418 echo '<u>Utils:</u> '.$alxutils.'<br>';
419 }
420
421 echo '</b></div>';
422
423 if($state=='On')
424 {
425 echo '<input class="but" type=button value="REBOOT" style="width:150px" onclick="if(confirm(\'REBOOT CLIENT #'.$id.' ?\')) window.open(\'reboot.php?client='.$id.'&ip='.$conn['ip'].'&op=reboot\', \'ShutdownWin\', \'width=200,height=100\')"><br>';
426 echo '<input class="but" type=button value="SHUTDOWN" style="width:150px" onclick="if(confirm(\'SHUTDOWN CLIENT #'.$id.' ?\')) window.open(\'reboot.php?client='.$id.'&ip='.$conn['ip'].'&op=halt\', \'ShutdownWin\', \'width=200,height=100\')"><br>';
427 echo '<br>';
428 echo '<div style="border:solid black 1px; padding:5px; background-color:#d5e5ff" align="center"><b>';
429 echo 'Hardware Detection:</b></div>';
430 echo '<input class="but" type=button value="LAN" style="width:50px" onclick="javascript:urlopen(\'include/hwinfo.php?ip='.$conn['ip'].'&cmd=lan\',\'POST\');">';
431 echo '<input class="but" type=button value="WLAN" style="width:50px" onclick="javascript:urlopen(\'include/hwinfo.php?ip='.$conn['ip'].'&cmd=wlan\',\'POST\');">';
432 echo '<input class="but" type=button value="VGA" style="width:50px" onclick="javascript:urlopen(\'include/hwinfo.php?ip='.$conn['ip'].'&cmd=vga\',\'POST\');">';
433 echo '<br>';
434 echo '<input class="but" type=button value="PRN" style="width:50px" onclick="javascript:urlopen(\'include/hwinfo.php?ip='.$conn['ip'].'&cmd=printer\',\'POST\');">';
435 echo '<input class="but" type=button value="HRDW" style="width:50px" onclick="javascript:urlopen(\'include/hwinfo.php?ip='.$conn['ip'].'&cmd=system\',\'POST\');">';
436 echo '<input class="but" type=button value="FS" style="width:50px" onclick="javascript:urlopen(\'include/hwinfo.php?ip='.$conn['ip'].'&cmd=rootfs\',\'POST\');">';
437 echo '<br><br>';
438 echo '<div style="border:solid black 1px; padding:5px; background-color:#d5e5ff" align="center"><b>';
439 echo 'Remote Shadow:</b></div>';
440 echo '<input class="but" type=button value="VNC" style="width:75px" onclick="window.open(\'vncviewer.php?ip='.$conn['ip'].'\', \'VncViewer\', \'width=200,height=100\')">';
441 echo '<input class="but" type=button value="SSH" style="width:75px" onclick="window.open(\'mindterm.php?ip='.$conn['ip'].'\', \'MindTerm\', \'width=200,height=100\')">';
442 echo '<br><br>';
443 echo '<div style="border:solid black 1px; padding:5px; background-color:#d5e5ff" align="center"><b>';
444 echo 'Client Update:</b></div>';
445 echo '<input class="but" type=button value="UPDATE MAGE DB" style="width:150px" onclick="if(confirm(\'UPDATE DB ON CLIENT #'.$id.' ?\')) window.open(\'mageupgrade.php?client='.$id.'&ip='.$conn['ip'].'&op=update\', \'ShutdownWin\', \'width=800,height=600\')"><br>';
446 echo '<input class="but" type=button value="CALC DEPS" style="width:150px" onclick="if(confirm(\'CALC DEPS FOR CLIENT #'.$id.' ?\')) window.open(\'mageupgrade.php?client='.$id.'&ip='.$conn['ip'].'&op=calc\', \'ShutdownWin\', \'width=800,height=600\')"><br>';
447 echo '<input class="but" type=button value="UPGRADE CLIENT" style="width:150px" onclick="if(confirm(\'UPGRADE ALL PACKAGES ON CLIENT #'.$id.' ?\')) window.open(\'mageupgrade.php?client='.$id.'&ip='.$conn['ip'].'&op=upgrade\', \'ShutdownWin\', \'width=800,height=600\');setTimeout(\'window.location.reload()\',0);"><br>';
448 }
449 else
450 echo '<input class="but" type=button value="WAKE ON LAN" style="width:150px" onclick="if(confirm(\'WAKE CLIENT #'.$id.' ?\')) window.open(\'wake_on_lan.php?mac='.$data['client_serials']['mac'].'\', \'WakeWin\', \'width=200,height=100\')"><br>';
451
452 echo '<br><center><a href="share/ChangeLog.html" target="_blank">[ChangeLog]</a> <a href="share/FAQ.html" target="_blank">[FAQs]</a></center>';
453
454 echo '</td></tr></table>';
455 echo '</form>';
456 ?>

Properties

Name Value
svn:executable *