2020-06-03 15:31:18 +00:00
|
|
|
<?php
|
|
|
|
date_default_timezone_set("Europe/Berlin");
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
session_start();
|
|
|
|
|
2023-08-23 16:16:35 +00:00
|
|
|
include_once("app/utils.php");
|
|
|
|
include_once("app/HTML.php");
|
2020-06-03 15:31:18 +00:00
|
|
|
|
|
|
|
$RUNTIME = array();
|
|
|
|
include_once("config.php");
|
|
|
|
|
|
|
|
|
|
|
|
if ($handle = opendir('./cron/'))
|
|
|
|
{
|
|
|
|
while (false !== ($entry = readdir($handle)))
|
|
|
|
{
|
|
|
|
if ($entry != "." && $entry != "..")
|
|
|
|
{
|
|
|
|
include_once "./cron/".$entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir($handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|