#406 게시판 모듈에 상담 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3655 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-02-14 05:20:53 +00:00
parent 4d1d8ba929
commit eefe8f825f
15 changed files with 56 additions and 1 deletions

View file

@ -51,6 +51,10 @@
<th scope="row">{$lang->except_notice}</th>
<td>{$module_info->except_notice=='N'?$lang->notuse:$lang->use}</td>
</tr>
<tr>
<th scope="row">{$lang->consultation}</th>
<td>{$module_info->consultation=='Y'?$lang->use:$lang->notuse}</td>
</tr>
<tr>
<th scope="row">{$lang->description}</th>
<td>{nl2br(htmlspecialchars($module_info->description))}&nbsp;</td>

View file

@ -112,6 +112,13 @@
<p>{$lang->about_except_notice}</p>
</td>
</tr>
<tr>
<th scope="row">{$lang->consultation}</th>
<td>
<input type="checkbox" name="consultation" value="Y" <!--@if($module_info->consultation=='Y')-->checked="checked"<!--@end--> />
<p>{nl2br($lang->about_consultation)}</p>
</td>
</tr>
<tr>
<th scope="row">{$lang->description}</th>
<td>

View file

@ -17,6 +17,7 @@
<param name="list_count" target="list_count" />
<param name="search_list_count" target="search_list_count" />
<param name="except_notice" target="except_notice" />
<param name="consultation" target="consultation" />
<param name="page_count" target="page_count" />
<param name="is_default" target="is_default" />
<param name="description" target="description" />