PatchBot/modules/Hardcopy.php
2022-03-29 14:53:24 +02:00

14 lines
316 B
PHP

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