Merge pull request #6 from adlerweb/ChemGes

Add ChemGes
This commit is contained in:
Steffen Lange 2024-11-19 16:32:44 +01:00 committed by GitHub
commit 5dabeb9d65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
}
}
?>