Add ChemGes

This commit is contained in:
adlerweb 2024-11-16 04:37:01 +01:00
parent 4a1488347e
commit 4978699e8c

14
modules/ChemGes.php Normal file
View file

@ -0,0 +1,14 @@
<?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;
}
}
?>