aboutsummaryrefslogtreecommitdiffstats
path: root/packages/phpsysinfo/phpsysinfo.inc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/phpsysinfo/phpsysinfo.inc')
-rw-r--r--packages/phpsysinfo/phpsysinfo.inc187
1 files changed, 187 insertions, 0 deletions
diff --git a/packages/phpsysinfo/phpsysinfo.inc b/packages/phpsysinfo/phpsysinfo.inc
new file mode 100644
index 00000000..d3c44873
--- /dev/null
+++ b/packages/phpsysinfo/phpsysinfo.inc
@@ -0,0 +1,187 @@
+<?php
+
+function phpsysinfo_install_deinstall() {
+
+ conf_mount_rw();
+ config_lock();
+ exec("cd /var/db/pkg/ && pkg_delete `ls | grep mbmon`");
+ exec("rm -d -R /usr/local/www/phpSysInfo");
+ conf_mount_ro();
+ config_unlock();
+}
+
+function phpsysinfo_install_config() {
+global $config, $g;
+
+ conf_mount_rw();
+ config_lock();
+
+ exec("cd ..");
+ exec("tar -xzvf /usr/local/pkg/phpSysInfo-2.5.3.tgz");
+
+
+ /* lines need in config.php */
+
+$default_lng = en;
+$default_template= pfSense;
+$hide_picklist = "false";
+$show_vhostname = "false";
+$sensor_program = '""';
+$show_mount_point = "false";
+$show_inodes = "false";
+$hide_mounts = "array()";
+$hide_fstypes = "array()";
+$loadbar = "false";
+$showerrors = "false";
+$temperatureformat = '"c-f"';
+
+$hide_picklist = $config['installedpackages']['phpsysinfo']['config'][0]['hidepicklist'];
+if($hide_picklist)
+$hide_picklist = "true";
+else
+$hide_picklist = "false";
+
+$sensor_program = $config['installedpackages']['phpsysinfo']['config'][0]['sensorprogram'];
+if($sensor_program)
+$sensor_program= "mbmon";
+else
+$sensor_program = '""';
+
+$show_mount_point = $config['installedpackages']['phpsysinfo']['config'][0]['showmountpoint'];
+if($show_mount_point)
+$show_mount_point = "true";
+else
+$show_mount_point = "false";
+
+$hide_fstypes = $config['installedpackages']['phpsysinfo']['config'][0]['hidefstypes'];
+if($hide_fstypes)
+$hide_fstypes = "$hide_fstypes";
+
+$show_inodes = $config['installedpackages']['phpsysinfo']['config'][0]['showinodes'];
+if($show_inodes)
+$show_inodes = "true";
+else
+$show_inodes = "false";
+
+$loadbar = $config['installedpackages']['phpsysinfo']['config'][0]['loadbar'];
+if($loadbar)
+$loadbar = "true";
+else
+$loadbar = "false";
+
+$showerrors = $config['installedpackages']['phpsysinfo']['config'][0]['showerrors'];
+if($showerrors)
+$showerrors = "true";
+else
+$showerrors = "false";
+
+
+$hf = fopen("/usr/local/www/phpSysInfo/config.php","w");
+if(!$hf) {
+log_error("could not open /usr/local/www/phpSysInfo/config.php for writing");
+exit;
+}
+
+fwrite($hf, '<?php');
+fwrite($hf, "\n");
+
+// webpath but not used
+fwrite($hf, '$webpath = "";');
+fwrite($hf, "\n");
+
+// define the default lang and template here
+fwrite($hf, '$default_lng=');
+fwrite($hf, "'");
+fwrite($hf, $default_lng);
+fwrite($hf, "'");
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+fwrite($hf, '$default_template=');
+fwrite($hf, "'");
+fwrite($hf, $default_template);
+fwrite($hf, "'");
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// hide language and template picklist
+// false = display picklist
+// true = do not display picklist
+fwrite($hf, '$hide_picklist = ');
+fwrite($hf, $hide_picklist);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// display the virtual host name and address
+// default is canonical host name and address
+fwrite($hf, '$show_vhostname = ');
+fwrite($hf, $show_vhostname);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// define the motherboard monitoring program here
+fwrite($hf, '$sensor_program = ');
+fwrite($hf, $sensor_program);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// show mount point
+fwrite($hf, '$show_mount_point = ');
+fwrite($hf, $show_mount_point);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// show bind
+fwrite($hf, '$show_bind = false;');
+fwrite($hf, "\n");
+
+// show inode usage
+fwrite($hf, '$show_inodes = ');
+fwrite($hf, $show_inodes);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// show inode usage
+fwrite($hf, '$hide_mounts = ');
+fwrite($hf, $hide_mounts);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// Hide filesystem typess. Example: 'tmpfs', 'usbfs'
+fwrite($hf, '$hide_fstypes = array(');
+fwrite($hf, $hide_fstypes);
+fwrite($hf, ');');
+fwrite($hf, "\n");
+
+// show a graph for current cpuload
+fwrite($hf, '$loadbar = ');
+fwrite($hf, $loadbar);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// e.g. $addpaths = array('/opt/bin', '/opt/sbin');
+fwrite($hf, '$addpaths = array();');
+fwrite($hf, "\n");
+
+// display error messages at the top of the page
+fwrite($hf, '$showerrors = ');
+fwrite($hf, $showerrors);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// format in which temperature is displayed
+fwrite($hf, '$temperatureformat = ');
+fwrite($hf, $temperatureformat);
+fwrite($hf, ';');
+fwrite($hf, "\n");
+
+// The end of the config file
+fwrite($hf, '?>');
+fwrite($hf, "\n");
+
+fclose($hf);
+ conf_mount_ro();
+ config_unlock();
+
+}
+?> \ No newline at end of file