mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-15 14:37:03 +02:00
heavy code cleanup in the webui
This commit is contained in:
@ -10,39 +10,29 @@
|
||||
<meta name="rating" content="general" />
|
||||
<meta name="robots" content="all" />
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/jquery-ui-custom.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/rc-splitter.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/style-<?php print THEME; ?>.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/view/theme/default/stylesheet/jquery.ui.all.css" />
|
||||
|
||||
<script type="text/javascript" src="/view/javascript/jquery-1.7.1.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/jquery-ui-1.8.13.custom.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/jquery.dropdownPlain.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
var piler_ui_lang = '<?php if(LANG == 'en') { ?>en-GB<?php } else { print LANG; } ?>';
|
||||
var domains_search_url = '<?php print SITE_URL; ?>/index.php?route=domain/domains&';
|
||||
var email_search_url = '<?php print SITE_URL; ?>index.php?route=group/email&';
|
||||
var group_search_url = '<?php print SITE_URL; ?>index.php?route=group/group&';
|
||||
var folder_search_url = '<?php print SITE_URL; ?>index.php?route=folder/folder&';
|
||||
var health_worker_url = "<?php print HEALTH_WORKER_URL; ?>";
|
||||
</script>
|
||||
|
||||
<script type="text/javascript" src="/view/javascript/jquery.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/jquery-ui-custom.min.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/rc-splitter.js"></script>
|
||||
<script type="text/javascript" src="/view/javascript/piler.js"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body<?php if(isset($this->request->get['route']) && $this->request->get['route'] == 'health/health') { ?> onload="loadHealth(); setInterval('loadHealth()', <?php print HEALTH_REFRESH; ?> * 1000)" style="cursor: wait"<?php } ?>>
|
||||
<body<?php if(isset($this->request->get['route']) && $this->request->get['route'] == 'health/health') { ?> onload="Piler.load_health();"<?php } ?>>
|
||||
|
||||
<div id="fuku1">
|
||||
<div id="piler1">
|
||||
|
||||
<div id="menu"><?php print $menu; ?></div>
|
||||
|
||||
<div id="main" align="center" style="border: 0px solid red; text-align: left; margin-left: 20px; margin-right: 20px; width: 1160px;">
|
||||
<div id="main" align="center">
|
||||
|
||||
<?php if($title) { ?><h3><?php print $title; ?></h3><?php } ?>
|
||||
|
||||
<?php print $content; ?>
|
||||
|
||||
</div>
|
||||
</div> <!-- main -->
|
||||
|
||||
<div id="footer"><?php print $footer; ?></div>
|
||||
|
||||
|
Reference in New Issue
Block a user