27 lines
924 B
PHP
27 lines
924 B
PHP
<?php
|
|
include_once 'MusicServe.php';
|
|
|
|
ktk\MusicServe\MusicServe::loadModule("BasicAuth");
|
|
ktk\MusicServe\MusicServe::loadModule("ErrorReporter");
|
|
ktk\MusicServe\MusicServe::loadModule("FileBrowser");
|
|
ktk\MusicServe\MusicServe::loadModule("Playlist");
|
|
ktk\MusicServe\MusicServe::loadModule("Player");
|
|
|
|
ktk\MusicServe\MusicServe::initProgram();
|
|
ktk\MusicServe\MusicServe::processProgram();
|
|
?>
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
|
<head>
|
|
<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
|
|
<title>ktk MusicServe</title>
|
|
<?php ktk\MusicServe\MusicServe::renderCss() ?>
|
|
</head>
|
|
<body>
|
|
<?php ktk\MusicServe\MusicServe::renderProgram() ?>
|
|
</body>
|
|
</html>
|
|
<?php ktk\MusicServe\MusicServe::closeProgram() ?>
|