Add 010 Editor

This commit is contained in:
Steffen Lange 2020-10-25 20:41:56 +01:00
parent e18fdbc203
commit 8451d66b28

14
modules/TenEditor.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class TenEditor extends PatchBase {
function __construct() {
parent::__construct('SweetScape Software Inc.', '010 Editor', 'https://sweetscape.com/download/010editor/');
}
function check() : bool {
if ($this->fetch('https://sweetscape.com/010editor/'))
return $this->parse('/<div class="versiontext">v([\d\.]+)<\/div>/');
return false;
}
}
?>