Add FileZilla

This commit is contained in:
Steffen Lange 2021-01-17 23:19:46 +01:00
parent 228ac081de
commit 7a92563ce5

14
modules/FileZilla.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class FileZilla extends PatchBase {
function __construct() {
parent::__construct('Tim Kosse', 'FileZilla', 'https://filezilla-project.org/download.php?show_all=1');
}
function check() : bool {
if ($this->fetch('https://filezilla-project.org/download.php?show_all=1'))
return $this->parse('/<p>The latest stable version of FileZilla Client is ([\d\.]+)<\/p>/');
return false;
}
}
?>