Creating GIT Repo

This commit is contained in:
2021-09-28 13:27:39 +02:00
commit 298f6e6759
10 changed files with 585 additions and 0 deletions

10
Woche.jpg.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
require_once "Schedule.php";
require_once "config.php";
$sched = new Schedule(Schedule::WholeWeek("today"), $stations, $optional, $wanted, $darkmode);
$image = $sched->createImage();
header("Content-Type: image/jpg");
imagejpeg($image);