PatchBot/modules/TotalCommander.php
2019-07-15 22:27:48 +02:00

14 lines
322 B
PHP

<?php
class TotalCommander extends PatchBase {
function __construct() {
parent::__construct('Ghisler', 'Total Commander', 'https://www.ghisler.com/');
}
function check() : bool {
if ($this->fetch('https://www.ghisler.com/download.htm'))
return $this->parse('/version ([\d\w\.]+) of/');
return false;
}
}
?>