diff options
author | Seth Mos <seth.mos@xs4all.nl> | 2008-02-18 15:44:06 +0000 |
---|---|---|
committer | Seth Mos <seth.mos@xs4all.nl> | 2008-02-18 15:44:06 +0000 |
commit | c4f98011ebcf3c368e49033c0a87645b340bce5f (patch) | |
tree | 46cab863b800b0a4ba7134825a8570a8eef6bbf0 /packages/lcdproc | |
parent | 1197b89c735e53cb34434b44d1137c2935ae9e54 (diff) | |
download | pfsense-packages-c4f98011ebcf3c368e49033c0a87645b340bce5f.tar.gz pfsense-packages-c4f98011ebcf3c368e49033c0a87645b340bce5f.tar.bz2 pfsense-packages-c4f98011ebcf3c368e49033c0a87645b340bce5f.zip |
Add php screens
Diffstat (limited to 'packages/lcdproc')
-rw-r--r-- | packages/lcdproc/lcdproc_client.php | 75 |
1 files changed, 70 insertions, 5 deletions
diff --git a/packages/lcdproc/lcdproc_client.php b/packages/lcdproc/lcdproc_client.php index a07b62ce..8910b53a 100644 --- a/packages/lcdproc/lcdproc_client.php +++ b/packages/lcdproc/lcdproc_client.php @@ -30,6 +30,7 @@ // require_once("config.inc"); // require_once("functions.inc"); require_once("/usr/local/pkg/lcdproc.inc"); + $lcdproc_screens_config = $config['installedpackages']['lcdprocscreens']['config'][0]; /* Define functions */ function send_lcd_commands($lcd, $lcd_cmds) { @@ -57,12 +58,45 @@ /* keep a counter to see how many times we can loop */ $i = 1; while($i) { - $time = date ("l dS of F Y h:i:s A"); $lcd_cmds = array(); - $lcd_cmds[] = "widget_set welcome_scr title_wdgt \"$i test \""; - // $lcd_cmds[] = "widget_set welcome_scr text_wdgt 1 1 \"$time test\""; - $lcd_cmds[] = "widget_set welcome_scr text_wdgt 1 2 20 2 h 4 \"$i $time test\""; - // $lcd_cmds[] = "output on 1 \""; + $lcd_cmds[] = "widget_set welcome_scr title_wdgt \"Welcome\""; + $lcd_cmds[] = "widget_set welcome_scr text_wdgt 1 2 20 2 h 4 \"to {$g['product_name']}\""; + + /* process screens to display */ + if(is_array($lcdproc_screens_config)) { + foreach($lcdproc_screens_config as $name => $screen) { + if($screen == "on") { + switch($name) { + case "scr_cpu": + $processor = ""; + $lcd_cmds[] = "widget_set $name title_wdgt \"Processor\""; + $lcd_cmds[] = "widget_set $name text_wdgt 1 2 20 2 h 4 \"$processor\""; + break; + case "scr_time": + $time = date ("F Y h:i:s"); + $lcd_cmds[] = "widget_set $name title_wdgt \"Time\""; + $lcd_cmds[] = "widget_set $name text_wdgt 1 2 20 2 h 4 \"$time\""; + break; + case "scr_load": + exec("/usr/bin/uptime", $output, $ret); + $temp = explode($output, " "); + $loadavg = "$temp[9] $temp[10] $temp[11] $temp[12] $temp[13]"; + $lcd_cmds[] = "widget_set $name title_wdgt \"Load average\""; + $lcd_cmds[] = "widget_set $name text_wdgt 1 2 20 2 h 4 \"$loadavg\""; + break; + case "scr_uptime": + exec("/usr/bin/uptime", $output, $ret); + $temp = explode($output, " "); + $uptime = "$temp[2] $temp[3] $temp[4] $temp[5] $temp[6] $temp[7] $temp[8]"; + $lcd_cmds[] = "widget_set $name title_wdgt \"Uptime\""; + $lcd_cmds[] = "widget_set $name text_wdgt 1 2 20 2 h 4 \"$uptime\""; + + break; + } + } + } + } + send_lcd_commands($lcd, $lcd_cmds); sleep(10); $i++; @@ -79,6 +113,37 @@ $lcd_cmds[] = "screen_set welcome_scr name welcome"; $lcd_cmds[] = "widget_add welcome_scr title_wdgt title"; $lcd_cmds[] = "widget_add welcome_scr text_wdgt scroller"; + + /* process screens to display */ + if(is_array($lcdproc_screens_config)) { + foreach($lcdproc_screens_config as $name => $screen) { + if($screen == "on") { + switch($name) { + case "scr_cpu": + $lcd_cmds[] = "screen_set $name name welcome"; + $lcd_cmds[] = "widget_add $name title_wdgt title"; + $lcd_cmds[] = "widget_add $name text_wdgt scroller"; + break; + case "scr_time": + $lcd_cmds[] = "screen_set $name name welcome"; + $lcd_cmds[] = "widget_add $name title_wdgt title"; + $lcd_cmds[] = "widget_add $name text_wdgt scroller"; + break; + case "scr_load": + $lcd_cmds[] = "screen_set $name name welcome"; + $lcd_cmds[] = "widget_add $name title_wdgt title"; + $lcd_cmds[] = "widget_add $name text_wdgt scroller"; + break; + case "scr_uptime": + $lcd_cmds[] = "screen_set $name name welcome"; + $lcd_cmds[] = "widget_add $name title_wdgt title"; + $lcd_cmds[] = "widget_add $name text_wdgt scroller"; + + break; + } + } + } + } send_lcd_commands($lcd, $lcd_cmds); } |