Add GCLog

This commit is contained in:
Steffen Lange 2020-05-10 15:31:09 +02:00
parent 228881763e
commit b1ca930e9e

14
modules/GCLog.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class GCLog extends PatchBase {
function __construct() {
parent::__construct('Steffen Lange', 'GCLog', 'https://www.gclog.de/');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/stelas/GCLog/tags', true))
return $this->parse_json('name');
return false;
}
}
?>