????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.222.164.11 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpsysinfo/includes/output/ |
Upload File : |
<?php /** * XML Generator class * * PHP version 5 * * @category PHP * @package PSI_XML * @author Michael Cramer <BigMichi1@users.sourceforge.net> * @copyright 2009 phpSysInfo * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @version SVN: $Id: class.WebpageXML.inc.php 388 2010-11-11 13:42:03Z jacky672 $ * @link http://phpsysinfo.sourceforge.net */ /** * class for xml output * * @category PHP * @package PSI_XML * @author Michael Cramer <BigMichi1@users.sourceforge.net> * @copyright 2009 phpSysInfo * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @version Release: 3.0 * @link http://phpsysinfo.sourceforge.net */ class WebpageXML extends Output implements PSI_Interface_Output { /** * xml object that holds the generated xml * * @var XML */ private $_xml; /** * only plugin xml * * @var boolean */ private $_pluginRequest = false; /** * complete xml * * @var boolean */ private $_completeXML = false; /** * name of the plugin * * @var string */ private $_pluginName = null; /** * generate the output * * @return void */ private function _prepare() { if (!$this->_pluginRequest) { // Figure out which OS we are running on, and detect support if (!file_exists(APP_ROOT.'/includes/os/class.'.PHP_OS.'.inc.php')) { $this->error->addError("file_exists(class.".PHP_OS.".php.inc)", PHP_OS." is not currently supported"); } // check if there is a valid sensor configuration in config.php $found = false; if (PSI_SENSOR_PROGRAM !== false) { if (!file_exists(APP_ROOT.'/includes/mb/class.'.PSI_SENSOR_PROGRAM.'.inc.php')) { $found = false; $this->error->addError("file_exists(class.".htmlspecialchars(PSI_SENSOR_PROGRAM).".inc.php)", "specified sensor program is not supported"); } else { $found = true; } } /** * motherboard information available or not * * @var boolean */ define('PSI_MBINFO', $found); // check if there is a valid hddtemp configuration in config.php $found = false; if (PSI_HDD_TEMP !== false) { $found = true; } /** * hddtemp information available or not * * @var boolean */ define('PSI_HDDTEMP', $found); // check if there is a valid ups configuration in config.php $found = false; if (PSI_UPS_PROGRAM !== false) { if (!file_exists(APP_ROOT.'/includes/ups/class.'.PSI_UPS_PROGRAM.'.inc.php')) { $found = false; $this->error->addError("file_exists(class.".htmlspecialchars(PSI_UPS_PROGRAM).".inc.php)", "specified UPS program is not supported"); } else { $found = true; } } /** * ups information available or not * * @var boolean */ define('PSI_UPSINFO', $found); // if there are errors stop executing the script until they are fixed if ($this->error->errorsExist()) { $this->error->errorsAsXML(); } } // Create the XML if ($this->_pluginRequest) { $this->_xml = new XML(false, $this->_pluginName); } else { $this->_xml = new XML($this->_completeXML); } } /** * render the output * * @return void */ public function run() { header("Cache-Control: no-cache, must-revalidate\n"); header("Content-Type: text/xml\n\n"); $xml = $this->_xml->getXml(); echo $xml->asXML(); } /** * get XML as pure string * * @return string */ public function getXMLString() { $xml = $this->_xml->getXml(); return $xml->asXML(); } /** * set parameters for the XML generation process * * @param boolean $completeXML switch for complete xml with all plugins * @param string $plugin name of the plugin * * @return void */ public function __construct($completeXML, $plugin = null) { parent::__construct(); if ($completeXML) { $this->_completeXML = true; } if ($plugin) { if (in_array($plugin, CommonFunctions::getPlugins())) { $this->_pluginName = $plugin; $this->_pluginRequest = true; } } $this->_prepare(); } } ?>