Add Zoom
This commit is contained in:
parent
f7b773249d
commit
9452fc19c2
1 changed files with 14 additions and 0 deletions
14
modules/Zoom.php
Normal file
14
modules/Zoom.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class Zoom extends PatchBase {
|
||||||
|
function __construct() {
|
||||||
|
parent::__construct('Zoom Video Communications', 'Zoom', 'https://zoom.us/download');
|
||||||
|
}
|
||||||
|
function check() : bool {
|
||||||
|
if ($this->fetch('https://zoom.us/client/latest/ZoomInstaller.exe', false))
|
||||||
|
return $this->parse('/\/prod\/([\d\.]+)\/ZoomInstaller\.exe/');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue