mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 00:59:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1077 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
08552d49d9
commit
f1fb82ac2f
4 changed files with 38 additions and 16 deletions
|
|
@ -3,6 +3,7 @@
|
||||||
<grants />
|
<grants />
|
||||||
<actions>
|
<actions>
|
||||||
<action name="dispInstallIntroduce" type="view" standalone="true" index="true" />
|
<action name="dispInstallIntroduce" type="view" standalone="true" index="true" />
|
||||||
|
<action name="dispInstallSelectDB" type="view" standalone="true" />
|
||||||
<action name="dispInstallForm" type="view" standalone="true" />
|
<action name="dispInstallForm" type="view" standalone="true" />
|
||||||
<action name="procInstall" type="controller" standalone="true" />
|
<action name="procInstall" type="controller" standalone="true" />
|
||||||
</actions>
|
</actions>
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,13 @@
|
||||||
$this->setTemplateFile('introduce');
|
$this->setTemplateFile('introduce');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief DB 선택 화면
|
||||||
|
**/
|
||||||
|
function dispInstallSelectDB() {
|
||||||
|
$this->setTemplateFile('select_db');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief DB 정보/ 최고 관리자 정보 입력 화면을 보여줌
|
* @brief DB 정보/ 최고 관리자 정보 입력 화면을 보여줌
|
||||||
**/
|
**/
|
||||||
|
|
|
||||||
|
|
@ -33,22 +33,7 @@
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<!--@if($install_enable)-->
|
<!--@if($install_enable)-->
|
||||||
<form method="get" action="./">
|
[<a href="{getUrl('','act','dispInstallSelectDB')}">{$lang->cmd_install_next}</a>]
|
||||||
<input type="hidden" name="act" value="dispInstallForm" />
|
|
||||||
<table border="1">
|
|
||||||
<tr>
|
|
||||||
<td>{$lang->db_type}</td>
|
|
||||||
<td>
|
|
||||||
<select name="db_type">
|
|
||||||
<!--@foreach(DB::getSupportedList() as $_key => $_db_name)-->
|
|
||||||
<option value="{$_db_name}">{$_db_name}</option>
|
|
||||||
<!--@end-->
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
<td><input type="submit" value="{$lang->cmd_install_next}" /></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
<!--@else-->
|
<!--@else-->
|
||||||
{$lang->cmd_install_fix_checklist}
|
{$lang->cmd_install_fix_checklist}
|
||||||
|
|
|
||||||
29
modules/install/tpl/select_db.html
Normal file
29
modules/install/tpl/select_db.html
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
<table border="1">
|
||||||
|
<tr>
|
||||||
|
<td colspan="2">{$lang->introduce_title}</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<!--@if($install_enable)-->
|
||||||
|
<form method="get" action="./">
|
||||||
|
<input type="hidden" name="act" value="dispInstallForm" />
|
||||||
|
<table border="1">
|
||||||
|
<tr>
|
||||||
|
<td>{$lang->db_type}</td>
|
||||||
|
<td>
|
||||||
|
<select name="db_type">
|
||||||
|
<!--@foreach(DB::getSupportedList() as $_key => $_db_name)-->
|
||||||
|
<option value="{$_db_name}">{$_db_name}</option>
|
||||||
|
<!--@end-->
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
<td><input type="submit" value="{$lang->cmd_install_next}" /></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<!--@else-->
|
||||||
|
{$lang->cmd_install_fix_checklist}
|
||||||
|
[<a href="./">{$lang->cmd_next}</a>]
|
||||||
|
|
||||||
|
<!--@end-->
|
||||||
Loading…
Add table
Add a link
Reference in a new issue