Add PDF24 Creator + PDFCreator

This commit is contained in:
Steffen Lange 2020-04-07 21:02:23 +02:00
parent 03928bb43e
commit 131d8038ae
2 changed files with 28 additions and 0 deletions

14
modules/PDFCreator.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class PDFCreator extends PatchBase {
function __construct() {
parent::__construct('pdfforge', 'PDFCreator', 'https://download.pdfforge.org/download/pdfcreator');
}
function check() : bool {
if ($this->fetch('https://download.pdfforge.org/download/pdfcreator'))
return $this->parse('/Stable Release ([\d\.]+)/');
return false;
}
}
?>