Add WizTree

This commit is contained in:
Steffen Lange 2021-08-16 15:03:26 +02:00
parent 074e34aa00
commit 6553084a14

14
modules/WizTree.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class WizTree extends PatchBase {
function __construct() {
parent::__construct('Antibody Software', 'WizTree', 'https://diskanalyzer.com/download');
}
function check() : bool {
if ($this->fetch('http://antibody-software.com/files/wiztreeversion.php'))
return $this->parse('/VERSION=([\d\.]+)/');
return false;
}
}
?>