This commit is contained in:
Steffen Lange 2022-07-21 20:11:10 +02:00
parent 2912b1add1
commit 1def981bbd

14
modules/Grml.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Grml extends PatchBase {
function __construct() {
parent::__construct('Michael Prokop', 'Grml', 'https://grml.org/download/');
}
function check() : bool {
if ($this->fetch('https://grml.org/download/'))
return $this->parse('/name="version" value="([\d\.]+)"/');
return false;
}
}
?>