PatchBot/modules/ChemGes.php
2024-11-16 06:03:31 +01:00

14 lines
301 B
PHP

<?php
class ChemGes extends PatchBase {
function __construct() {
parent::__construct('DR-Software', 'ChemGes', 'https://dr-software.com/en/');
}
function check() : bool {
if ($this->fetch('https://dr-software.com/en/'))
return $this->parse('/Version ([\d\.]+)</');
return false;
}
}
?>