Add Everything

This commit is contained in:
Steffen Lange 2020-10-07 19:04:00 +02:00
parent a4793e1a96
commit 1e5bde247a

14
modules/Everything.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Everything extends PatchBase {
function __construct() {
parent::__construct('David Carpenter', 'Everything', 'https://www.voidtools.com/downloads/');
}
function check() : bool {
if ($this->fetch('https://www.voidtools.com/downloads/'))
return $this->parse('/>Download Everything ([\d\.]+)</');
return false;
}
}
?>