Merge pull request #4 from adlerweb/APlanX

Add APlanX
This commit is contained in:
Steffen Lange 2024-11-19 16:27:51 +01:00 committed by GitHub
commit b70ae32caf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
}
}
?>