Add Governikus

This commit is contained in:
Steffen Lange 2020-02-07 14:05:33 +01:00
parent e21b4d1518
commit 29511ae56d

14
modules/Governikus.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Governikus extends PatchBase {
function __construct() {
parent::__construct('Governikus KG', 'Governikus Communicator Justiz Edition', 'https://www.governikus.de/governikus-communicator-justiz-edition/');
}
function check() : bool {
if ($this->fetch('https://www.governikus.de/governikus-communicator-justiz-edition/'))
return $this->parse('#//www\.governikus\.de/wp-content/uploads/GOVERNIKUS_COMMUNICATOR_JUSTIZ_EDITION_Releaseuebersicht_([\d]+)[-\d]*\.pdf#');
return false;
}
}
?>