* @copyright 2017 phpSysInfo * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version * @version Release: 3.0 * @link http://phpsysinfo.sourceforge.net */ class Thinkpad extends Hwmon { /** * get the information * * @see PSI_Interface_Sensor::build() * * @return Void */ public function build() { if (PSI_OS == 'Linux') { $hwpaths = glob("/sys/devices/platform/thinkpad_hwmon/", GLOB_NOSORT); if (is_array($hwpaths) && (count($hwpaths) == 1)) { $this->_temperature($hwpaths[0]); $this->_fans($hwpaths[0]); } } } }