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