Marius Cramer
2014-08-13 31230cb7cda673db7a96fb14d93dfaf9262c74cf
commit | author | age
532ae5 1 <?php
L 2
3 /*
4 Copyright (c) 2007, Till Brehm, projektfarm Gmbh
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without modification,
8 are permitted provided that the following conditions are met:
9
10     * Redistributions of source code must retain the above copyright notice,
11       this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright notice,
13       this list of conditions and the following disclaimer in the documentation
14       and/or other materials provided with the distribution.
15     * Neither the name of ISPConfig nor the names of its contributors
16       may be used to endorse or promote products derived from this software without
17       specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
7fe908 31 require_once '../lib/config.inc.php';
MC 32 require_once '../lib/app.inc.php';
532ae5 33
2a4acd 34 if(!isset($_SESSION['s']['module']['name'])) $_SESSION['s']['module']['name'] = 'login';
T 35
36 $app->uses('tpl');
37 $app->tpl->newTemplate('main.tpl.htm');
532ae5 38
73ec6b 39 // tab change warning?
M 40 // read misc config
41 $app->uses('getconf');
42 $sys_config = $app->getconf->get_global_config('misc');
43 if($sys_config['tab_change_warning'] == 'y') {
7fe908 44     $app->tpl->setVar('tabchange_warning_enabled', 'y');
MC 45     $app->tpl->setVar('global_tabchange_warning_txt', $app->lng('global_tabchange_warning_txt'));
73ec6b 46 } else {
7fe908 47     $app->tpl->setVar('tabchange_warning_enabled', 'n');
73ec6b 48 }
M 49 $app->tpl->setVar('tabchange_discard_enabled', $sys_config['tab_change_discard']);
50 if($sys_config['tab_change_discard'] == 'y') {
7fe908 51     $app->tpl->setVar('global_tabchange_discard_txt', $app->lng('global_tabchange_discard_txt'));
73ec6b 52 }
M 53
5715f5 54 if(isset($_SESSION['show_info_msg'])) {
7fe908 55     $app->tpl->setVar('show_info_msg', $_SESSION['show_info_msg']);
MC 56     unset($_SESSION['show_info_msg']);
5715f5 57 }
M 58 if(isset($_SESSION['show_error_msg'])) {
7fe908 59     $app->tpl->setVar('show_error_msg', $_SESSION['show_error_msg']);
MC 60     unset($_SESSION['show_error_msg']);
5715f5 61 }
M 62
f70cd8 63 // read js.d files
MC 64 $js_d = ISPC_WEB_PATH . '/js/js.d';
65 $js_d_files = array();
66 if(@is_dir($js_d)) {
67     $dir = opendir($js_d);
68     while($file = readdir($dir)) {
69         $filename = $js_d . '/' . $file;
70         if($file === '.' || $file === '..' || !is_file($filename)) continue;
71         if(substr($file, -3) !== '.js') continue;
72         $js_d_files[] = array('file' => $file);
73     }
74     closedir($dir);
75 }
76
77 if (!empty($js_d_files)) $app->tpl->setLoop('js_d_includes', $js_d_files);
78 unset($js_d_files);
5715f5 79
532ae5 80 $app->tpl_defaults();
L 81 $app->tpl->pparse();
7fe908 82 ?>