1
0
Fork 0
Manager/crone.php

26 lines
433 B
PHP
Raw Normal View History

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();
2023-08-23 16:16:35 +00:00
$RUNTIME['BASEDIR'] = __DIR__;
2020-06-03 15:31:18 +00:00
include_once("config.php");
if ($handle = opendir('./cron/'))
{
while (false !== ($entry = readdir($handle)))
{
if ($entry != "." && $entry != "..")
{
include_once "./cron/".$entry;
}
}
closedir($handle);
}
?>