f080c43cf9c8dd7ee2738268748f4ec2246307f8
[mailer.git] / templates / de / html / install / install_main_ajax.tpl
1 <div class="install_main_ajax" align="center">
2 <div class="install_header">
3         <strong>: : : {--INSTALLER_MAIN_TITLE--} : : :</strong>
4 </div>
5
6 <div align="center">
7 <div class="install_menu_ajax">
8         {%pipe,generateInstallerMenu%}
9 </div>
10 </div>
11
12 <div id="install_error" class="ajax_error">
13         <div class="ajax_error_title">
14                 <strong>{--INSTALLER_AJAX_ERROR_TITLE--}</strong>
15         </div>
16         <div class="ajax_error_close">
17                 <strong id="install_error_close" style="padding-left:1.5px;cursor:pointer">X</strong>
18         </div>
19         <div style="clear:both"></div>
20         <div class="ajax_error_content" id="install_error_content">
21                 <!-- Content will be inserted here by AJAX //-->
22         </div>
23 </div>
24
25 <div id="install_warning" class="ajax_warning">
26         <div class="ajax_warning_title">
27                 <strong>{--INSTALLER_AJAX_WARNING_TITLE--}</strong>
28         </div>
29         <div class="ajax_warning_close">
30                 <strong id="install_warning_close" style="padding-left:1.5px;cursor:pointer">X</strong>
31         </div>
32         <div style="clear:both"></div>
33         <div class="ajax_warning_content" id="install_warning_content">
34                 <!-- Content will be inserted here by AJAX //-->
35         </div>
36 </div>
37
38 <div id="install_process" class="ajax_process">
39         <div class="ajax_process_title">
40                 <strong>{--INSTALLER_AJAX_FINISH_TITLE--}</strong>
41         </div>
42         <div class="ajax_process_close">
43                 <strong id="install_process_close" style="padding-left:1.5px;cursor:wait">X</strong>
44         </div>
45         <div style="clear:both"></div>
46         <div class="ajax_process_content" id="install_process_content">
47                 <!-- Content will be inserted here by AJAX //-->
48         </div>
49 </div>
50
51 <div style="clear:both"></div>
52
53 <div class="install_content_container">
54         <div id="install_content" class="install_content">
55                 {%pipe,getInstallerContent%}
56         </div>
57 </div>
58
59 <div class="install_footer">
60         {%pipe,generateInstallerFooterNavigation%}
61 </div>
62 </div>
63
64 <script type="text/javascript" src="{%url=js/ajax-loader.js%}"></script>
65 <script type="text/javascript">
66 <!--
67 // These scripts shall be loaded
68 var scripts = new Array();
69 scripts[0] = '{%url,js=js/ajax-common.js%}';
70 scripts[1] = '{%jquery,js=ui%}';
71 scripts[2] = '{%url,js=js/install-data.js%}';
72 scripts[3] = '{%url,js=js/install-common.js%}';
73
74 // This must be the last one
75 scripts[scripts.length] = '{%url,js=js.php?js=install_ajax&install_page=$content[install_page]%}';
76
77 // Do this only when all is ready
78 // Load all scripts
79 if (loadScripts(scripts) == true) {
80         // Wait for loadScripts() finishing loading all scripts
81         $().ready(function () {
82                 // Do stuff, when all scripts are loaded
83         });
84 } // END - if
85
86 //-->
87 </script>