git-svn-id: http://xe-core.googlecode.com/svn/trunk@218 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-02 08:54:03 +00:00
parent 772beca574
commit 4a08caab41
5 changed files with 42 additions and 6 deletions

View file

@ -59,6 +59,10 @@
if($this->module_srl) Context::set('module_srl',$this->module_srl);
}
// 기본 모듈 정보들 설정
$this->list_count = $this->module_info->list_count?$this->module_info->list_count:20;
$this->page_count = $this->module_info->page_count?$this->module_info->page_count:10;
// 템플릿 경로 지정
$this->setTemplatePath($template_path);
}

View file

@ -19,6 +19,8 @@
$lang->footer_text = "하단 내용";
$lang->skin = "스킨";
$lang->use_category = "분류 사용";
$lang->list_count = "목록 수";
$lang->page_count = "페이지 수";
$lang->category_title = "분류명";
$lang->module = "모듈";
@ -52,6 +54,9 @@
$lang->about_footer_text = "모듈의 하단에 표시되는 내용입니다 (html 태그 사용 가능)";
$lang->about_skin = "모듈의 스킨을 선택하실 수 있습니다";
$lang->about_use_category = "선택하시면 분류기능을 사용할 수 있습니다";
$lang->about_list_count = "한페이지에 표시될 글의 수를 지정하실 수 있습니다. (기본 20개)";
$lang->about_page_count = "목록 하단 페이지 이동 하는 링크의 수를 지정하실 수 있습니다. (기본 10개)";
$lang->about_admin_id = "해당 모듈에 대해 최고 권한을 가지는 관리자를 지정할 수 있습니다. ,(콤마)로 다수 아이디 지정이 가능합니다. (관리자페이지 접근은 불가능)";
$lang->about_grant = "특정 권한의 대상을 모두 해제하시면 로그인하지 않은 회원까지 권한을 가질 수 있습니다";

View file

@ -5,13 +5,21 @@
<th>{$lang->skin}</th>
<td>{$module_info->skin}</td>
</tr>
<tr>
<th>{$lang->browser_title}</th>
<td>{$module_info->browser_title}</td>
</tr>
<tr>
<th>{$lang->use_category}</th>
<td><!--@if($module_info->use_category=='Y')-->{$lang->use}<!--@else-->{$lang->notuse}<!--@end--></td>
</tr>
<tr>
<th>{$lang->browser_title}</th>
<td>{$module_info->browser_title}</td>
<th>{$lang->list_count}</th>
<td>{$module_info->list_count?$module_info->list_count:20}</td>
</tr>
<tr>
<th>{$lang->page_count}</th>
<td>{$module_info->page_count?$module_info->page_count:10}</td>
</tr>
<tr>
<th>{$lang->description}</th>

View file

@ -27,6 +27,13 @@
<tr>
<td>{$lang->about_mid}</td>
</tr>
<tr>
<th rowspan="2">{$lang->browser_title}</th>
<td><input type="text" name="browser_title" value="{$module_info->browser_title}" /></td>
</tr>
<tr>
<td>{$lang->about_browser_title}</td>
</tr>
<tr>
<th rowspan="2">{$lang->skin}</th>
<td>
@ -48,12 +55,20 @@
<td>{$lang->about_use_category}</td>
</tr>
<tr>
<th rowspan="2">{$lang->browser_title}</th>
<td><input type="text" name="browser_title" value="{$module_info->browser_title}" /></td>
<th rowspan="2">{$lang->list_count}</th>
<td><input type="text" name="list_count" value="{$module_info->list_count?$module_info->list_count:20}" /></td>
</tr>
<tr>
<td>{$lang->about_browser_title}</td>
<td>{$lang->about_list_count}</td>
</tr>
<tr>
<th rowspan="2">{$lang->page_count}</th>
<td><input type="text" name="page_count" value="{$module_info->page_count?$module_info->page_count:10}" /></td>
</tr>
<tr>
<td>{$lang->about_page_count}</td>
</tr>
<!--@if($module_info->is_default!='Y')-->
<tr>
<th rowspan="2">{$lang->is_default}</th>

View file

@ -2,13 +2,17 @@
<form>
<node target="mid" required="true" filter="alpha_number" />
<node target="browser_title" required="true" maxlength="250" />
<node target="list_count" required="true" filter="number" />
<node target="page_count" required="true" filter="number" />
</form>
<parameter>
<param name="board_name" target="mid" />
<param name="module_srl" target="module_srl" />
<param name="skin" target="skin" />
<param name="use_category" target="use_category" />
<param name="browser_title" target="browser_title" />
<param name="use_category" target="use_category" />
<param name="list_count" target="list_count" />
<param name="page_count" target="page_count" />
<param name="is_default" target="is_default" />
<param name="description" target="description" />
<param name="header_text" target="header_text" />