-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
45 lines (37 loc) · 1.02 KB
/
index.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/*
* @TODO: Finish run program
* @TODO: Custom program names
* @TODO: Create NPC servers
* @TODO: Add virus table, type, GUI
* @TODO: Run virus
*/
require_once( 'private/defs.php' );
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title><?php
function writeCSS( $filebase )
{
echo "<link rel='stylesheet' type='text/css' href='" .
clientfile_buildRequest( 'C', $filebase ) . "'>";
}
function writeJS( $filebase )
{
echo "<script type='text/javascript' src='" .
clientfile_buildRequest( 'J', $filebase ) .
"'></script>";
}
writeCSS( JQUERY_UI_CSS );
writeCSS( JQUERY_LAYOUT_CSS );
writeCSS( JQUERY_QTIP );
writeCSS( 'main' );
foreach( $GLOBALS['JQUERY_FILES'] as $jqueryjs )
{
writeJS( $jqueryjs );
}
writeJS('plugins');
writeJS('main');
?></head><body><script type='text/javascript'>$(document).ready(function(){
//doLogin();
indexSetup();
});</script></body></html>