86 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Basic OS Class
 | |
|  *
 | |
|  * PHP version 5
 | |
|  *
 | |
|  * @category  PHP
 | |
|  * @package   PSI OS class
 | |
|  * @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.OS.inc.php 699 2012-09-15 11:57:13Z namiltd $
 | |
|  * @link      http://phpsysinfo.sourceforge.net
 | |
|  */
 | |
|  /**
 | |
|  * Basic OS functions for all OS classes
 | |
|  *
 | |
|  * @category  PHP
 | |
|  * @package   PSI OS class
 | |
|  * @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
 | |
|  */
 | |
| abstract class OS implements PSI_Interface_OS
 | |
| {
 | |
|     /**
 | |
|      * object for error handling
 | |
|      *
 | |
|      * @var Error
 | |
|      */
 | |
|     protected $error;
 | |
| 
 | |
|     /**
 | |
|      * @var System
 | |
|      */
 | |
|     protected $sys;
 | |
| 
 | |
|     /**
 | |
|      * build the global Error object
 | |
|      */
 | |
|     public function __construct()
 | |
|     {
 | |
|         $this->error = Error::singleton();
 | |
|         $this->sys = new System();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * get os specific encoding
 | |
|      *
 | |
|      * @see PSI_Interface_OS::getEncoding()
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getEncoding()
 | |
|     {
 | |
|         return PSI_SYSTEM_CODEPAGE;
 | |
|     }
 | |
|     /**
 | |
|      * get os specific language
 | |
|      *
 | |
|      * @see PSI_Interface_OS::getLanguage()
 | |
|      *
 | |
|      * @return string
 | |
|      */
 | |
|     public function getLanguage()
 | |
|     {
 | |
|         return PSI_SYSTEM_LANG;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * get the filled or unfilled (with default values) System object
 | |
|      *
 | |
|      * @see PSI_Interface_OS::getSys()
 | |
|      *
 | |
|      * @return System
 | |
|      */
 | |
|     final public function getSys()
 | |
|     {
 | |
|         $this->build();
 | |
| 
 | |
|         return $this->sys;
 | |
|     }
 | |
| }
 | 
