This commit is contained in:
Steffen Lange 2024-11-20 10:02:19 +01:00
parent bb8f9e4064
commit c675ae2bd5

14
modules/Zola.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Zola extends PatchBase {
function __construct() {
parent::__construct('Vincent Prouillet', 'Zola', 'https://www.getzola.org/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/getzola/zola/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>