PatchBot/modules/EMClient.php
2021-02-21 22:31:22 +01:00

14 lines
362 B
PHP

<?php
class EMClient extends PatchBase {
function __construct() {
parent::__construct('eM Client Inc.', 'eM Client', 'https://www.emclient.com/download?lang=en');
}
function check() : bool {
if ($this->fetch('https://www.emclient.com/dist/latest/setup.msi', false))
return $this->parse('/filename=emclient-v([\d\.]+)\.msi/');
return false;
}
}
?>