forked from gaiaehr/gaiaehr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_install.php
54 lines (52 loc) · 1.84 KB
/
_install.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
46
47
48
49
50
51
52
53
54
<?php
if(!defined('_GaiaEXEC')) die('No direct access allowed.');
// *****************************************************************************************
// Main Screen Application
// Description: Installation screen procedure
// version 0.0.1
// revision: N/A
// author: Ernesto J Rodriguez - GaiaEHR
// *****************************************************************************************
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>GaiaEHR :: New Site Setup</title>
<script type="text/javascript" src="lib/extjs-4.1.1a/ext-all.js"></script>
<link rel="stylesheet" type="text/css" href="resources/css/ext-all.css">
<link rel="stylesheet" type="text/css" href="resources/css/style_newui.css">
<link rel="stylesheet" type="text/css" href="resources/css/custom_app.css">
<link rel="shortcut icon" href="favicon.ico">
<script src="data/api.php"></script>
<script type="text/javascript">
var app, lang = {};
function say(a){ console.log(a); }
function i18n(key){ return lang[key] || key; }
Ext.Loader.setConfig({
enabled: true,
disableCaching: false,
paths: {
'App': 'app'
}
});
</script>
<script type="text/javascript">
function say(a){
console.log(a);
}
for(var x = 0; x < App.data.length; x++){
Ext.direct.Manager.addProvider(App.data[x]);
}
Ext.require('App.view.sitesetup.SiteSetup');
Ext.onReady(function(){
app = Ext.create('App.view.sitesetup.SiteSetup').show();
});
</script>
</head>
<body id="login">
<div id="bg_logo"></div>
<div id="copyright">
GaiaEHR | <a href="javascript:void(0)" onClick="app.winCopyright.show();">Copyright Notice</a>
</div>
</body>
</html>