10 lines
245 B
PHP
10 lines
245 B
PHP
<?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); |