설치시 rewrite mod 사용유무 및 timezone설정. 관리자 페이지에 timezone변경 및 언어변경 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1892 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-10 07:04:44 +00:00
parent 2f328baecf
commit 03fbd6d257
17 changed files with 121 additions and 69 deletions

View file

@ -1,32 +1,60 @@
<!--%import("./filter/save_time_zone.xml")-->
<h3>{$lang->welcome_to_zeroboard_xe}</h3>
<div class="infoText">{nl2br($lang->about_admin_page)}</div>
<!-- 사용자 링크 -->
<table cellspacing="0" class="tableType3">
<col width="150" />
<col />
<tr>
<th colspan="2">{$lang->zeroboard_xe_user_links}</th>
</tr>
<!--@foreach($lang->xe_user_links as $key => $val)-->
<tr>
<th scope="col">{$key}</th>
<td class="left blue"><a href="#" onclick="winopen('{$val}'); return false;">{$val}</a></td>
</tr>
<!--@end-->
</table>
<form action="./" method="get" onsubmit="return procFilter(this, save_time_zone);">
<table cellspacing="0" class="tableType4">
<col width="100" />
<col />
<tr>
<th scope="row">Lang</th>
<td>
<select name="lang_type" onchange="doChangeLangType(this)">
<option value="{$lang_type}">{$lang_type}</option>
<!--@foreach($lang_supported as $val)-->
<!--@if($val != $lang_type)-->
<option value="{$val}">{$val}</option>
<!--@end-->
<!--@end-->
</select>
</td>
</tr>
<tr>
<th scope="row">Time zone</th>
<td>
<select name="time_zone" class="time_zone">
<!--@foreach($time_zone_list as $key => $val)-->
<option value="{$key}" <!--@if($time_zone==$key)-->selected="selected"<!--@end-->>{$val}</option>
<!--@end-->
</select>
<span class="button"><input type="submit" value="{$lang->cmd_save}" /></span>
</td>
</tr>
</table>
</form>
<!-- 개발자 링크 -->
<table cellspacing="0" class="tableType3 gap1">
<col width="150" />
<col />
<tr>
<th colspan="2">{$lang->zeroboard_xe_developer_links}</th>
</tr>
<!--@foreach($lang->xe_developer_links as $key => $val)-->
<tr>
<th scope="col">{$key}</th>
<td class="left blue"><a href="#" onclick="winopen('{$val}'); return false;">{$val}</a></td>
</tr>
<!--@end-->
</table>
<!-- 사용자 링크 -->
<table cellspacing="0" class="tableType3 gap1">
<col width="250" />
<col />
<tr>
<th colspan="2" class="bold">{$lang->zeroboard_xe_user_links}</th>
</tr>
<!--@foreach($lang->xe_user_links as $key => $val)-->
<tr>
<th scope="col">{$key}</th>
<td class="left blue"><a href="#" onclick="winopen('{$val}'); return false;">{$val}</a></td>
</tr>
<!--@end-->
<!-- 개발자 링크 -->
<tr>
<th colspan="2" class="bold">{$lang->zeroboard_xe_developer_links}</th>
</tr>
<!--@foreach($lang->xe_developer_links as $key => $val)-->
<tr>
<th scope="col">{$key}</th>
<td class="left blue"><a href="#" onclick="winopen('{$val}'); return false;">{$val}</a></td>
</tr>
<!--@end-->
</table>