dj_mix_hosting_software/download.php
2024-05-19 20:01:13 -07:00

17 lines
No EOL
381 B
PHP

<?php
require_once 'includes/globals.php';
require_once 'vendor/autoload.php';
use DJMixHosting\Database;
use DJMixHosting\Mix;
use DJMixHosting\DownloadMix;
if (isset($_GET['slug'])) {
$db = new Database($config);
$download = new DownloadMix(new Mix($_GET['slug'], $db), $db);
$download->download();
} else {
header("Location: /");
exit();
}