PatchBot/modules/TotalCommander.php

14 lines
344 B
PHP

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