PatchBot/modules/Grml.php
2022-07-21 20:11:10 +02:00

14 lines
310 B
PHP

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