Add Hardcopy

This commit is contained in:
Steffen Lange 2022-03-29 14:53:24 +02:00
parent cd029e4592
commit 60b865feb4

14
modules/Hardcopy.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Hardcopy extends PatchBase {
function __construct() {
parent::__construct('sw4you GmbH', 'Hardcopy', 'https://gen.hardcopy.de/');
}
function check() : bool {
if ($this->fetch('https://gen.hardcopy.de/std.php'))
return $this->parse('/<I>Version\s+([\d\.]+)\s*<\/I>/');
return false;
}
}
?>