PatchBot/modules/CDBurnerXP.php
2020-04-30 23:32:48 +02:00

14 lines
337 B
PHP

<?php
class CDBurnerXP extends PatchBase {
function __construct() {
parent::__construct('Canneverbe Limited', 'CDBurnerXP', 'https://cdburnerxp.se/de/download');
}
function check() : bool {
if ($this->fetch('https://cdburnerxp.se/de/download'))
return $this->parse('/<small>\(([\d\.]+)\)<\/small>/');
return false;
}
}
?>