Add Grml
This commit is contained in:
parent
2912b1add1
commit
1def981bbd
1 changed files with 14 additions and 0 deletions
14
modules/Grml.php
Normal file
14
modules/Grml.php
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue