* adjust for custom timezone.

This commit is contained in:
wangyidong
2019-02-26 16:49:49 +08:00
parent 2d9d78fd8c
commit 216c6f5c0e
8 changed files with 31 additions and 42 deletions
+22 -25
View File
@@ -10,32 +10,29 @@
* @link http://www.zentao.net
*/
?>
<?php include 'header.html.php';?>
<?php include $this->app->getConfigRoot() . 'timezones.php';?>
<?php include '../../common/view/header.html.php';?>
<div id='mainMenu' class='clearfix'>
<div class='btn-toolbar pull-left'><?php common::printAdminSubMenu('system');?></div>
</div>
<div id='mainContent' class='main-content'>
<form class="load-indicator main-form form-ajax" method='post'>
<div class='main-header'>
<div class='heading'>
<strong><?php echo $lang->custom->timezone?></strong>
</div>
</div>
<table class='table table-form'>
<tr>
<th class='w-200px'><?php echo $lang->custom->timezone;?></th>
<td><?php echo html::select('timezone', $timezoneList, $config->timezone, "class='form-control chosen'");?></td>
</tr>
<tr>
<th></th>
<td class='form-actions'><?php echo html::submitButton();?></td>
</tr>
</table>
</form>
<div class='center-block mw-500px'>
<?php if(!function_exists('date_default_timezone_set')):?>
<div class='alert alert-warning'><?php echo $lang->custom->notice->cannotSetTimezone;?></div>
<?php else:?>
<?php include $this->app->getConfigRoot() . 'timezones.php';?>
<form class="load-indicator main-form form-ajax" method='post'>
<table class='table table-form'>
<tr>
<th class='w-80px'><?php echo $lang->custom->timezone;?></th>
<td><?php echo html::select('timezone', $timezoneList, $config->timezone, "class='form-control chosen'");?></td>
</tr>
<tr>
<td colspan='2' class='form-actions text-center'><?php echo html::submitButton();?></td>
</tr>
</table>
</form>
<?php endif;?>
</div>
</div>
<script>
$(function()
{
$('#mainMenu #timezoneTab').addClass('btn-active-text');
})
</script>
<?php include '../../common/view/footer.html.php';?>