14 lines
337 B
PHP
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;
|
|
}
|
|
}
|
|
|
|
?>
|