Add APlanX

This commit is contained in:
adlerweb 2024-11-16 04:36:02 +01:00
parent 4a1488347e
commit 00b0e83f66

14
modules/APlanX.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class APlanX extends PatchBase {
function __construct() {
parent::__construct('braintool', 'A-Plan X', 'https://www.braintool.com/patches-x/');
}
function check() : bool {
if ($this->fetch('https://www.braintool.com/patch-a-plan-x-historie/'))
return $this->parse('/<strong>Release ([\d\.]+) /');
return false;
}
}
?>