-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabt_8.php
More file actions
27 lines (22 loc) · 954 Bytes
/
abt_8.php
File metadata and controls
27 lines (22 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<style>
<?php include './main.css'; ?>
<?php include './tools.php' ?>
</style>
<?php
// Hier die Coustom Data Eintragen
$filename = "./ical/obj.json";
$calurl = "https://calsync.alamos-gmbh.com/calendar/ical/technik%40leitstelle-boeblingen.de/public-vkXgd1seTsAzRnz0xgpcYxzVxpaUksCG/cal.ics";
//Anlegen der Gruppe
$gruppe1 = [];
$gruppe2 = [];
$gruppe3 = [];
$gesamt = [];
// Die JSON auslesen:
$data = getDataFromJson($filename, $calurl);
// Arrays aus der Data holen,
getArrays($data, $gruppe1, "Gr. 1 -", $gruppe2, "Gr. 2 -", $gruppe3, "Gr. 3 -", $gruppe3, "Gr. 4 -", $gesamt);
//Weiteren Kalender zur URL hinzufügen
//addCalender("./ffw.json","https://calsync.alamos-gmbh.com/calendar/ical/technik%40leitstelle-boeblingen.de/public-BJzrvdoQS8ospFjntN9UZ300pscvGBrW/cal.ics",$gesamt);
// Ausgabe der Dateien in eine Gruppe:
showTable($gruppe1, "Gruppe 1", $gruppe2, "Gruppe 2", $gruppe3, "Gruppe 3", $gruppe3, "0", $gesamt, "Gesamt");
?>