Admin HTML Markup Clean.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9377 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2011-09-27 12:53:33 +00:00
parent 0634424830
commit 024a234f6a
74 changed files with 732 additions and 838 deletions

View file

@ -1,89 +1,78 @@
<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->addon_maker}</h3>
</div>
<div id="popBody">
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row"><div>{$lang->title}</div></th>
<td>{$addon_info->title} ver. {$addon_info->version}</td>
</tr>
<tr>
<th scope="row"><div>{$lang->author}</div></th>
<td>
<!--@foreach($addon_info->author as $author)-->
{$author->name} <!--@if($author->homepage || $author->email_address)-->(<!--@if($author->homepage)--><a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->homepage}</a><!--@end--><!--@if($author->homepage && $author->email_address)-->, <!--@end--><!--@if($author->email_address)--><a href="mailto:{$author->email_address}">{$author->email_address}</a><!--@end-->)<!--@end--><br />
<!--@endforeach-->
</td>
</tr>
<!--@if($addon_info->homepage)-->
<tr>
<th scope="row"><div>{$lang->homepage}</div></th>
<td><a href="{$addon_info->homepage}" onclick="window.open(this.href);return false;">{$addon_info->homepage}</a></td>
</tr><!--@end-->
<tr>
<th scope="row"><div>{$lang->regdate}</div></th>
<td>{zdate($addon_info->date, 'Y-m-d')}</td>
</tr>
<!--@if($addon_info->license || $addon_info->license_link)-->
<tr>
<th scope="row"><div>{$lang->addon_license}</div></th>
<td>
{nl2br(trim($addon_info->license))}
<!--@if($addon_info->license_link)-->
<p><a href="{$addon_info->license_link}" onclick="window.close(); return false;">{$addon_info->license_link}</a></p>
<!--@end-->
</td>
</tr><!--@end-->
<!--@if($addon_info->description)-->
<tr>
<th scope="row"><div>{$lang->description}</div></th>
<td>{nl2br(trim($addon_info->description))}</td>
</tr><!--@end-->
</table>
</div>
<h1 class="h1">{$lang->addon_maker}</h1>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->title}</th>
<td>{$addon_info->title} ver. {$addon_info->version}</td>
</tr>
<tr>
<th scope="row">{$lang->author}</th>
<td>
<!--@foreach($addon_info->author as $author)-->
{$author->name} <!--@if($author->homepage || $author->email_address)-->(<!--@if($author->homepage)--><a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->homepage}</a><!--@end--><!--@if($author->homepage && $author->email_address)-->, <!--@end--><!--@if($author->email_address)--><a href="mailto:{$author->email_address}">{$author->email_address}</a><!--@end-->)<!--@end--><br />
<!--@endforeach-->
</td>
</tr>
<!--@if($addon_info->homepage)-->
<tr>
<th scope="row">{$lang->homepage}</th>
<td><a href="{$addon_info->homepage}" onclick="window.open(this.href);return false;">{$addon_info->homepage}</a></td>
</tr><!--@end-->
<tr>
<th scope="row">{$lang->regdate}</th>
<td>{zdate($addon_info->date, 'Y-m-d')}</td>
</tr>
<!--@if($addon_info->license || $addon_info->license_link)-->
<tr>
<th scope="row">{$lang->addon_license}</th>
<td>
{nl2br(trim($addon_info->license))}
<!--@if($addon_info->license_link)-->
<p><a href="{$addon_info->license_link}" onclick="window.close(); return false;">{$addon_info->license_link}</a></p>
<!--@end-->
</td>
</tr><!--@end-->
<!--@if($addon_info->description)-->
<tr>
<th scope="row">{$lang->description}</th>
<td>{nl2br(trim($addon_info->description))}</td>
</tr><!--@end-->
</table>
</div>
<!--@if($addon_info->history)-->
<div id="popHistoryHeader">
<h3 class="xeAdmin">{$lang->addon_history}</h3>
</div>
<h1 class="h1">{$lang->addon_history}</h1>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<col width="100" />
<col />
<div id="popHistoryBody">
<div class="table">
<table width="100%" border="1" cellspacing="0">
<col width="100" />
<col />
<!--@foreach($addon_info->history as $history)-->
<tr>
<th scope="row"><div>
{$history->version}<br />
{$history->date}
</div></th>
<td>
<!--@foreach($history->author as $author)-->
<p>{$author->name} (<a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->homepage}</a> / <a href="mailto:{$author->email_address}">{$author->email_address}</a>)</p>
<!--@foreach($addon_info->history as $history)-->
<tr>
<th scope="row">
{$history->version}<br />
{$history->date} </th>
<td>
<!--@foreach($history->author as $author)-->
<p>{$author->name} (<a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->homepage}</a> / <a href="mailto:{$author->email_address}">{$author->email_address}</a>)</p>
<!--@endforeach-->
<!--@if($history->description)-->
<p>{nl2br(trim($history->description))}</p>
<!--@endif-->
<!--@if($history->logs)-->
<ul>
<!--@foreach($history->logs as $log)-->
<!--@if($log->link)-->
<li><a href="{$log->link}">{$log->text}</a></li>
<!--@else-->
<li>{$log->text}</li>
<!--@endif-->
<!--@endforeach-->
<!--@if($history->description)-->
<p>{nl2br(trim($history->description))}</p>
<!--@endif-->
<!--@if($history->logs)-->
<ul>
<!--@foreach($history->logs as $log)-->
<!--@if($log->link)-->
<li><a href="{$log->link}">{$log->text}</a></li>
<!--@else-->
<li>{$log->text}</li>
<!--@endif-->
<!--@endforeach-->
</ul>
<!--@endif-->
</td>
</tr>
<!--@endforeach-->
</table>
</div>
</ul>
<!--@endif-->
</td>
</tr>
<!--@endforeach-->
</table>
</div>
<!--@endif-->

View file

@ -53,7 +53,7 @@ body>.popup{margin:1em}
.x .table caption strong{color:#e00}
.x .table caption .side{float:right;font-weight:normal;margin-left:1em}
.x .table th,
.x .table td{border:0;padding:8px;vertical-align:top;text-align:left;border-bottom:1px solid #ddd}
.x .table td{border:0;padding:8px;vertical-align:top;text-align:left;border-bottom:1px solid #ddd;white-space:nowrap}
.x .table th{background:#f8f8f8}
.x .table thead th{border-bottom:1px solid #999}
.x .table tfoot td{font-weight:bold;background:#f8f8f8}

View file

@ -53,7 +53,7 @@ body>.popup{margin:1em}
.x .table caption strong{color:#e00}
.x .table caption .side{float:right;font-weight:normal;margin-left:1em}
.x .table th,
.x .table td{border:0;padding:8px;vertical-align:top;text-align:left;border-bottom:1px solid #ddd}
.x .table td{border:0;padding:8px;vertical-align:top;text-align:left;border-bottom:1px solid #ddd;white-space:nowrap}
.x .table th{background:#f8f8f8}
.x .table thead th{border-bottom:1px solid #999}
.x .table tfoot td{font-weight:bold;background:#f8f8f8}

View file

@ -6,15 +6,15 @@
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th><div>{$lang->comment_count}</div></th>
<td class="wide">
<th>{$lang->comment_count}</th>
<td >
<p>{$lang->about_comment_count}</p>
<input type="text" name="comment_count" value="{$comment_config->comment_count}" class="inputTypeText w80" />
<input type="text" name="comment_count" value="{$comment_config->comment_count}" />
</td>
</tr>
<tr>
<th><div>{$lang->cmd_vote}</div></th>
<th>{$lang->cmd_vote}</th>
<td>
<select name="use_vote_up" class="w100">
<option value="Y" <!--@if($comment_config->use_vote_up=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>
@ -24,7 +24,7 @@
</td>
</tr>
<tr>
<th><div>{$lang->cmd_vote_down}</div></th>
<th>{$lang->cmd_vote_down}</th>
<td>
<select name="use_vote_down" class="w100">
<option value="Y" <!--@if($comment_config->use_vote_down=='Y')-->selected="selected"<!--@end-->>{$lang->use}</option>

View file

@ -15,12 +15,12 @@
<caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<thead>
<tr>
<th scope="col"><div><input type="checkbox" onclick="XE.checkboxToggleAll(); return false;" /></div></th>
<th scope="col" class="wide"><div>{$lang->comment}</div></th>
<th scope="col"><div>{$lang->user_name}</div></th>
<th scope="col"><div>{$lang->date}</div></th>
<th scope="col"><div>{$lang->cmd_declare}</div></th>
<th scope="col"><div>{$lang->ipaddress}</div></th>
<th scope="col"><input type="checkbox" onclick="XE.checkboxToggleAll(); return false;" /></th>
<th scope="col">{$lang->comment}</th>
<th scope="col">{$lang->user_name}</th>
<th scope="col">{$lang->date}</th>
<th scope="col">{$lang->cmd_declare}</th>
<th scope="col">{$lang->ipaddress}</th>
</tr>
</thead>
<tbody>

View file

@ -12,5 +12,4 @@
<img src="{$val->screenshot}" alt="{$val->title}" style="border:1px solid #888888;padding:2px;margin:2px;"/>
<!--@end-->
</div>
<!--@if($key%2==1)--><div class="clear"></div><!--@end-->
<!--@end-->

View file

@ -19,10 +19,8 @@
<table width="100%" border="1" cellspacing="0">
<thead>
<tr>
<th scope="row" class="half_wide"><div>{$lang->total_counter}</div></th>
<th scope="row" class="half_wide">
<div>
<span id="str_selected_date">{zdate($selected_date, "Y-m-d")}</span>
<th scope="row">{$lang->total_counter}</th>
<th scope="row"> <span id="str_selected_date">{zdate($selected_date, "Y-m-d")}</span>
<input type="hidden" class="inputDate" value="{zdate($selected_date,'Y-m-d')}" />
<script type="text/javascript">
(function($){
@ -47,15 +45,13 @@
$(".inputDate").datepicker(option);
});
})(jQuery);
</script>
</div>
</th>
</script> </th>
</tr>
</thead>
<tbody>
<tr>
<td class="number center">Visitor <strong>{number_format($total_counter->unique_visitor)}</strong> &nbsp;/&nbsp; Pageview : <strong>{number_format($total_counter->pageview)}</strong></td>
<td class="number center">Visitor : <strong>{number_format($selected_day_counter->unique_visitor)}</strong> &nbsp;/&nbsp; Pageview : <strong>{number_format($selected_day_counter->pageview)}</strong></td>
<td>Visitor <strong>{number_format($total_counter->unique_visitor)}</strong> &nbsp;/&nbsp; Pageview : <strong>{number_format($total_counter->pageview)}</strong></td>
<td>Visitor : <strong>{number_format($selected_day_counter->unique_visitor)}</strong> &nbsp;/&nbsp; Pageview : <strong>{number_format($selected_day_counter->pageview)}</strong></td>
</tr>
</tbody>
</table>
@ -64,7 +60,7 @@
<div class="cnb">
<ul>
<!--@foreach($lang->cmd_select_counter_type as $key => $val)-->
<li <!--@if($type==$key || (!$type && $key == "hour"))-->class="on"<!--@end-->><a href="{getUrl('type',$key)}">{$val}</a></li>
<li <!--@if($type==$key || (!$type && $key == "hour"))-->class="active"<!--@end-->><a href="{getUrl('type',$key)}">{$val}</a></li>
<!--@end-->
</ul>
</div>
@ -91,9 +87,7 @@
<!--@end-->
<tr>
<!--@if(Context::getLangType()=='en')-->
<th scope="row">
<div>
<!--// 시간대별 -->
<th scope="row"> <!--// 시간대별 -->
<!--@if($type == 'year')-->
<em>{$key}</em>
<!--@elseif($type == 'month')-->
@ -102,13 +96,9 @@
<em>{$key}</em> {$lang->unit_day}
<!--@else-->
<em>{$key}</em>
<!--@end-->
</div>
</th>
<!--@end--> </th>
<!--@else-->
<th scope="row">
<div>
<!--// 시간대별 -->
<th scope="row"> <!--// 시간대별 -->
<!--@if($type == 'year')-->
<em>{$key}</em> {$lang->unit_year}
<!--@elseif($type == 'month')-->
@ -117,12 +107,10 @@
<em>{$key}</em> {$lang->unit_day}
<!--@else-->
<em>{$key}</em> {$lang->unit_hour}
<!--@end-->
</div>
</th>
<!--@end--> </th>
<!--@end-->
{@ $img_width = (int)$percent; $img_width = $img_width?$img_width.'%':'3px'; }
<td class="wide">
<td >
<div class="barContainer">
<span class="graphHr" style="width:{$img_width}">
<span>{number_format($val)}({$percent}%)</span>

View file

@ -12,19 +12,19 @@
<table width="100%" border="1" cellspacing="0">
<!--@if($category_info->parent_category_title)-->
<tr>
<th scope="row"><div>{$lang->parent_category_title}</div></th>
<td class="wide">{$category_info->parent_category_title}</td>
<th scope="row">{$lang->parent_category_title}</th>
<td >{$category_info->parent_category_title}</td>
</tr>
<!--@end-->
<tr>
<th scope="row"><div>{$lang->category_title}</div></th>
<th scope="row">{$lang->category_title}</th>
<td>
<input type="text" name="category_title" id="category_name" value="{$category_info->title}" class="inputTypeText" />
<input type="text" name="category_title" id="category_name" value="{$category_info->title}" />
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','category_name')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->category_color}</div></th>
<th scope="row">{$lang->category_color}</th>
<td>
<input type="text" name="category_color" value="{htmlspecialchars($category_info->color)}" class="color-indicator inputTypeText" />
<p>{$lang->about_category_color}</p>
@ -32,23 +32,23 @@
</tr>
<tr>
<th scope="row"><div>{$lang->category_description}</div></th>
<td class="wide">
<textarea name="category_description" id="category_description" class="inputTypeTextArea">{htmlspecialchars($category_info->description)}</textarea>
<th scope="row">{$lang->category_description}</th>
<td >
<textarea name="category_description" id="category_description" >{htmlspecialchars($category_info->description)}</textarea>
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','category_description')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>{$lang->about_category_description}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->expand}</div></th>
<th scope="row">{$lang->expand}</th>
<td>
<input type="checkbox" name="expand" value="Y" <!--@if($category_info->expand=="Y")-->checked="checked"<!--@end--> class="checkbox" />
<p>{$lang->about_expand}</p>
</td>
</tr>
<tr >
<th scope="row2"><div>{$lang->category_group_srls} <input type="checkbox" onclick="XE.checkboxToggleAll('group_srls[]'); return false;" /></div></th>
<th scope="row2">{$lang->category_group_srls} <input type="checkbox" onclick="XE.checkboxToggleAll('group_srls[]'); return false;" /></th>
<td>
<!--@foreach($group_list as $key=>$val)-->
<div><input type="checkbox" name="group_srls[]" value="{$key}" id="group_{$key}" <!--@if(is_array($category_info->group_srls)&&in_array($key, $category_info->group_srls))-->checked="checked"<!--@end--> class="checkbox" /> <label for="group_{$key}">{$val->title}</label></div>

View file

@ -11,27 +11,25 @@
var category_title = "{$lang->category}";
</script>
<span style="float:right"><a href="#" onclick="doReloadTreeCategory('{$module_info->module_srl}');return false;" class="button black"><span>{$lang->cmd_remake_cache}</span></a></span>
<div class="gap1">
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertCategory" id="fo_category" action="./" method="post">
<input type="hidden" name="act" value="procDocumentInsertCategory" />
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" />
<input type="hidden" name="xml_file" value="{$category_xml_file}" />
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<div id="category_info"></div>
</form>
<div id="menu">
<ul class="simpleTree">
<li class="root" id='tree_0'><span>{$lang->category}</span></li>
</ul>
</div>
</div>
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertCategory" id="fo_category" action="./" method="post">
<input type="hidden" name="act" value="procDocumentInsertCategory" />
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" />
<input type="hidden" name="xml_file" value="{$category_xml_file}" />
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<div id="category_info"></div>
</form>
<div id="menu">
<ul class="simpleTree">
<li class="root" id='tree_0'><span>{$lang->category}</span></li>
</ul>
</div>
<div class="btnArea">
<span class="btn"><button type="button" onclick="doReloadTreeCategory('{$module_info->module_srl}');return false;">{$lang->cmd_remake_cache}</button></span>
</div>
<script type="text/javascript">
var simpleTreeCollection;
var max_menu_depth = 999;

View file

@ -21,8 +21,8 @@
<table width="100%" border="1" cellspacing="0">
<thead>
<tr>
<th scope="col" class="half_wide"><div>{$lang->title}</div></th>
<th scope="col" class="half_wide"><div>{$lang->alias}</div></th>
<th scope="col">{$lang->title}</th>
<th scope="col">{$lang->alias}</th>
<th scope="col"></th>
</tr>
</thead>
@ -36,7 +36,7 @@
{@ $bFirst = false; }
<!--@end-->
<td>{$val->alias_title}</td>
<td><a href="#" onclick="deleteByFilter('{$val->alias_srl}', delete_alias);"><img src="images/buttonDeleteX.gif" alt="" /></a>
<td><button type="button" onclick="deleteByFilter('{$val->alias_srl}', delete_alias);">Delete</button>
</td>
</tr>
<!--@end-->
@ -44,9 +44,9 @@
<tr>
<!--@end-->
<td>
<input type="text" class="inputTypeText fixWidth" name="alias_title" />
<input type="text" name="alias_title" />
</td>
<td><span class="button black strong"><input type="submit" value="{$lang->cmd_registration}" accesskey="s"class="btnSubmit" /></span></td>
<td><span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span></td>
</tr>
</tbody>
</table>

View file

@ -11,57 +11,56 @@
<input type="hidden" name="page" value="{$page}" />
<!-- 모듈 선택 -->
<div class="fr">
<a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module','type','single')}" onclick="popopen(this.href,'ModuleSelect');return false;" class="button green"><span>{$lang->cmd_find_module}</span></a>
<!-- <a href="{getUrl('','module','document','act','dispDocumentManageDocument')}" onclick="popopen(this.href,'manageDocument'); return false;" class="button blue"><span>{$lang->cmd_manage_document}</span></a> -->
<div class="btnArea">
<span class="btn"><a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module','type','single')}" onclick="popopen(this.href,'ModuleSelect');return false;">{$lang->cmd_find_module}</a></span>
</div>
<!-- 목록 -->
<table cellspacing="0" class="rowTable clear">
<caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<thead>
<tr>
<th scope="col"><div>{$lang->no}</div></th>
<!--<th scope="col"><div><input type="checkbox" onclick="XE.checkboxToggleAll({ doClick:true }); return false;" /></div></th>-->
<th scope="col" class="wide"><div>{$lang->document}</div></th>
<th scope="col"><div>{$lang->trash_nick_name}</div></th>
<th scope="col"><div>{$lang->trash_date}</div></th>
<th scope="col"><div>{$lang->ipaddress}</div></th>
<th scope="col"><dib>{$lang->trash_description}</div></th>
<th scope="col"><div>{$lang->cmd_restore}</div></th>
</tr>
</thead>
<tbody>
<!--@foreach($document_list as $no => $oDocument)-->
<tr>
<td class="number center">{$no}</td>
<!--<td class="center"><input type="checkbox" name="cart" value="{$oDocument->document_srl}" onclick="doAddDocumentCart(this)" <!--@if($oDocument->isCarted())-->checked="checked"<!--@end-->/></td>-->
<td class="left subject">
{$oDocument->getTitle()}
<!--@if($oDocument->getCommentCount())-->
[{$oDocument->getCommentCount()}]
<!--@end-->
<!--@if($oDocument->getTrackbackCount())-->
[{$oDocument->getTrackbackCount()}]
<!--@end-->
</td>
<td class="nowrap"><span class="member_{$oDocument->get('trash_member_srl')}">{htmlspecialchars($oDocument->get('trash_nick_name'))}</span></td>
<td class="date center nowrap">{zdate($oDocument->get('trash_date'), "Y-m-d H:i:s")}</td>
<td class="number center nowrap">{$oDocument->get('ipaddress')}</td>
<td class="left">{$oDocument->get('trash_description')}</td>
<td class="center"><a href="#" onclick="executeFilterByTargetSrl('restore_form', {$oDocument->get('trash_srl')}, restore_trash);">{$lang->cmd_restore}</a></td>
</tr>
<!--@end-->
</tbody>
</table>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<thead>
<tr>
<th scope="col">{$lang->no}</th>
<th scope="col" >{$lang->document}</th>
<th scope="col">{$lang->trash_nick_name}</th>
<th scope="col">{$lang->trash_date}</th>
<th scope="col">{$lang->ipaddress}</th>
<th scope="col">{$lang->trash_description}</th>
<th scope="col">{$lang->cmd_restore}</th>
</tr>
</thead>
<tbody>
<!--@foreach($document_list as $no => $oDocument)-->
<tr>
<td>{$no}</td>
<td>
{$oDocument->getTitle()}
<!--@if($oDocument->getCommentCount())-->
[{$oDocument->getCommentCount()}]
<!--@end-->
<!--@if($oDocument->getTrackbackCount())-->
[{$oDocument->getTrackbackCount()}]
<!--@end-->
</td>
<td><a href="#popup_menu_area" class="member_{$oDocument->get('trash_member_srl')}">{htmlspecialchars($oDocument->get('trash_nick_name'))}</a></td>
<td>{zdate($oDocument->get('trash_date'), "Y-m-d H:i:s")}</td>
<td>{$oDocument->get('ipaddress')}</td>
<td >{$oDocument->get('trash_description')}</td>
<td><button type="button" onclick="executeFilterByTargetSrl('restore_form', {$oDocument->get('trash_srl')}, restore_trash);">{$lang->cmd_restore}</button></td>
</tr>
<!--@end-->
</tbody>
</table>
</div>
</form>
<!-- 페이지 네비게이션 -->
<div class="pagination a1">
<a href="{getUrl('page','','module_srl',$module_srl)}" class="prevEnd">{$lang->first_page}</a>
<div class="pagination">
<a href="{getUrl('page','','module_srl',$module_srl)}" class="direction">&lsaquo; {$lang->first_page}</a>
<!--@while($page_no = $page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
<strong>{$page_no}</strong>
@ -69,5 +68,5 @@
<a href="{getUrl('page',$page_no,'module_srl',$module_srl)}">{$page_no}</a>
<!--@end-->
<!--@end-->
<a href="{getUrl('page',$page_navigation->last_page,'module_srl',$module_srl)}" class="nextEnd">{$lang->last_page}</a>
<a href="{getUrl('page',$page_navigation->last_page,'module_srl',$module_srl)}" class="direction">{$lang->last_page} &rsaquo;</a>
</div>

View file

@ -22,14 +22,14 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th>{$lang->eid}</th>
<td class="wide">
<input type="text" name="eid" value="{$selected_var->eid}" class="inputTypeText w200" id="eid" /><p>{$lang->about_extra_vars_eid_value}</p>
<td >
<input type="text" name="eid" value="{$selected_var->eid}" id="eid" /><p>{$lang->about_extra_vars_eid_value}</p>
</td>
</tr>
<tr>
<th>{$lang->column_name}</th>
<td class="wide">
<input type="text" name="name" value="{$selected_var->name}" class="inputTypeText w200" id="name" /><a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','name')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<td >
<input type="text" name="name" value="{$selected_var->name}" id="name" /><a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','name')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
</td>
</tr>
<tr>
@ -50,11 +50,11 @@
</tr>
<tr>
<th>{$lang->default_value}</th>
<td><input type="text" name="default" value="{$selected_var->default}" class="inputTypeText w400" /><p>{$lang->about_extra_vars_default_value}</p></td>
<td><input type="text" name="default" value="{$selected_var->default}" /><p>{$lang->about_extra_vars_default_value}</p></td>
</tr>
<tr>
<th>{$lang->description}</th>
<td><input type="text" name="desc" value="{$selected_var->desc}" id="desc" class="inputTypeText w400" /><a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','desc')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a></td>
<td><input type="text" name="desc" value="{$selected_var->desc}" id="desc" /><a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','desc')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a></td>
</tr>
<tr>
<th>{$lang->cmd_search}</th>
@ -92,11 +92,11 @@
<tr>
<td rowspan="3">{$val->idx}</td>
<td rowspan="3">{$val->eid}</td>
<td class="nowrap"><b>{$val->name}</b></td>
<td class="nowrap">{$lang->column_type_list[$val->type]}</td>
<td><b>{$val->name}</b></td>
<td>{$lang->column_type_list[$val->type]}</td>
<td rowspan="3"><!--@if($val->is_required=='Y')--><b>{$lang->is_required}</b><!--@else-->N<!--@end--></td>
<td rowspan="3"><!--@if($val->search=='Y')--><b>{$lang->search_target}</b><!--@else-->N<!--@end--></td>
<td rowspan="3" class="nowrap">
<td rowspan="3">
<!--@if($val->idx>1)--><a href="#" onclick="moveVar('up','{$module_srl}','{$val->idx}'); return false;" class="buttonSet buttonUp"><span>{$lang->cmd_modify}</span></a><!--@end-->
<a href="#" onclick="moveVar('down','{$module_srl}','{$val->idx}');return false;" class="buttonSet buttonDown">{$lang->cmd_modify}</a>
<a href="{getUrl('selected_var_idx',$val->idx)}" class="buttonSet buttonSetting"><span>{$lang->cmd_modify}</span></a>
@ -105,11 +105,11 @@
</tr>
<tr>
<td>{$lang->default_value}</td>
<td class="wide">{$val->default}&nbsp;</td>
<td >{$val->default}&nbsp;</td>
</tr>
<tr>
<td>{$lang->description}</td>
<td class="wide">{$val->desc}&nbsp;</td>
<td >{$val->desc}&nbsp;</td>
</tr>
<!--@end-->
</tbody>

View file

@ -1,25 +1,19 @@
<load target="./js/document_admin.js" usecdn="true" />
<load target="./css/document.css" usecdn="true" />
<div class="printContent">
<div><h1 class="xeAdmin">{$oDocument->getTitleText()}</h1></div>
<div class="member_{$oDocument->get('member_srl')} gap1 fl">{$oDocument->get('nick_name')}</div>
<div class="gap1 fr">{$oDocument->getRegdate()}</div>
<div class="clear"></div>
<h1 class="h1">{$oDocument->getTitleText()}</h1>
<a href="#popup_menu_area" class="member_{$oDocument->get('member_srl')}">{$oDocument->get('nick_name')}</a>
{$oDocument->getRegdate()}
<!--@if($oDocument->isExtraVarsExists() && (!$oDocument->isSecret() || $oDocument->isGranted()) )-->
<!--@foreach($oDocument->getExtraVars() as $key => $val)-->
<div class="gap1">{$val->name} : {$val->getValueHtml()}</div>
<div class="clear"></div>
<!--@foreach($oDocument->getExtraVars() as $key => $val)-->
{$val->name}: {$val->getValueHtml()}
<!--@end-->
<!--@end-->
<div class="gap1">{$oDocument->getContent(false, false)}</div>
<!--@end-->
{$oDocument->getContent(false, false)}
</div>
<script type="text/javascript">//<![CDATA[
<script type="text/javascript">
//<![CDATA[
jQuery(window).load(function() { window.print(); } );
//]]></script>
//]]>
</script>

View file

@ -14,8 +14,8 @@
<tbody>
<!--@foreach($document_list as $no => $val)-->
<tr>
<td class="nowrap">{$val->getRegdate("Y-m-d H:i:s")}</td>
<td class="wide">
<td>{$val->getRegdate("Y-m-d H:i:s")}</td>
<td >
<div><a href="#" onclick="jQuery('#saved_document_{$val->document_srl}').toggle(); setFixedPopupSize(); return false;">{$val->getTitle()}</a></div>
<div id="saved_document_{$val->document_srl}" class="saved_content" style="display:none;">{$val->getContent(false)}</div>
</td>

View file

@ -1,12 +1,6 @@
<!--%import("popup.js")-->
<!--%import("popup.css")-->
<div id="popHeader" class="wide">
<h3 class="xeAdmin">
{$component_info->title} ver. {$component_info->version}
</h3>
</div>
<h1 class="h1">{$component_info->title} ver. {$component_info->version}</h1>
<div class="emoticonList">
<select name="list" id="selectEmoticonList">
<!--@foreach($emoticon_list as $key => $val)-->
@ -14,6 +8,3 @@
<!--@end-->
</select>
</div>
<div id="popBody">
</div>

View file

@ -9,11 +9,11 @@
<col width="120" />
<col />
<tr>
<th scope="row"><div>{$lang->width}</div></th>
<td><input type="text" class="inputTypeText" size="3" id="width" value="400" />px</td>
<th scope="row">{$lang->width}</th>
<td><input type="text" size="3" id="width" value="400" />px</td>
</tr>
<tr>
<th scope="row"><div>{$lang->gallery_style}</div></th>
<th scope="row">{$lang->gallery_style}</th>
<td>
<select id="gallery_style">
<option value="slide">{$lang->gallery_slide_style}</option>
@ -22,7 +22,7 @@
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->gallery_slide_align}</div></th>
<th scope="row">{$lang->gallery_slide_align}</th>
<td>
<select id="gallery_align">
<option value="center">{$lang->gallery_slide_center}</option>
@ -32,11 +32,11 @@
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->gallery_border_thickness}</div></th>
<td><input type="text" class="inputTypeText" size="1" id="border_thickness" value="0" />px</td>
<th scope="row">{$lang->gallery_border_thickness}</th>
<td><input type="text" size="1" id="border_thickness" value="0" />px</td>
</tr>
<tr>
<th scope="row"><div>{$lang->gallery_border_color}</div></th>
<th scope="row">{$lang->gallery_border_color}</th>
<td>
<div class="editor_color_box">
<script type="text/javascript">
@ -45,12 +45,12 @@
</div>
<ul class="buttonLeft">
<li><img src="./images/border_solid.gif" alt="blank" class="border_preview_color" id="border_preview_color" /></li>
<li>#<input type="text" id="border_color_input" size="7" maxlength="6" class="inputTypeText" value="000000" onkeyup="manual_select_color('border',this)"/></li>
<li>#<input type="text" id="border_color_input" size="7" maxlength="6" value="000000" onkeyup="manual_select_color('border',this)"/></li>
</ul>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->gallery_bg_color}</div></th>
<th scope="row">{$lang->gallery_bg_color}</th>
<td>
<div class="editor_color_box">
<script type="text/javascript">
@ -59,12 +59,12 @@
</div>
<ul class="buttonLeft">
<li><img src="./images/blank.gif" alt="blank" class="bg_preview_color" id="bg_preview_color" /></li>
<li>#<input type="text" id="bg_color_input" size="7" maxlength="6" class="inputTypeText" value="FFFFFF" onkeyup="manual_select_color('bg',this)"/></li>
<li>#<input type="text" id="bg_color_input" size="7" maxlength="6" value="FFFFFF" onkeyup="manual_select_color('bg',this)"/></li>
</ul>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->image_list}</div></th>
<th scope="row">{$lang->image_list}</th>
<td>
<select id="image_list" size="6" multiple="true" class="image_list">
</select>

View file

@ -14,19 +14,19 @@
<col />
<tr>
<th scope="row"><div>{$lang->multimedia_url}</div></th>
<td><input type="text" class="inputTypeText w400" id="multimedia_url" value="{$manual_url}" /></td>
<td><input type="text" id="multimedia_url" value="{$manual_url}" /></td>
</tr>
<tr>
<th scope="row"><div>{$lang->multimedia_caption}</div></th>
<td><input type="text" class="inputTypeText w400" id="multimedia_caption" value="" /></td>
<td><input type="text" id="multimedia_caption" value="" /></td>
</tr>
<tr>
<th scope="row"><div>{$lang->multimedia_width}</div></th>
<td><input type="text" class="inputTypeText" size="3" id="multimedia_width" value="400" />px</td>
<td><input type="text" size="3" id="multimedia_width" value="400" />px</td>
</tr>
<tr>
<th scope="row"><div>{$lang->multimedia_height}</div></th>
<td><input type="text" class="inputTypeText" size="3" id="multimedia_height" value="400" />px</td>
<td><input type="text" size="3" id="multimedia_height" value="400" />px</td>
</tr>
<tr>
<th scope="row"><div>{$lang->multimedia_auto_start}</div></th>

View file

@ -20,7 +20,7 @@
<col width="100" />
<col />
<tr>
<th scope="row"><div>{$lang->poll_stop_date}</div></th>
<th scope="row">{$lang->poll_stop_date}</th>
<td>
<input type="hidden" name="stop_date" id="stop_date" value="{date('Ymd',time()+60*60*24*30)}" />
@ -46,7 +46,7 @@
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->skin}</div></th>
<th scope="row">{$lang->skin}</th>
<td>
<select name="skin">
<!--@foreach($skin_list as $skin=>$skin_info)-->
@ -56,32 +56,31 @@
</td>
</tr>
</table>
<div id="poll_source" class="clear" style="display:none">
<div class="clear"></div>
<table cellspacing="0" class="rowTable gap1">
<col width="100" />
<col />
<tr>
<th scope="row"><div><label>{$lang->poll_chk_count}</label></div></th>
<td><input type="text" name="checkcount_tidx" value="1" size="1" class="inputTypeText" /></td>
</tr>
<tr>
<th scope="row"><div>{$lang->poll_title}</div></th>
<td><input type="text" name="title_tidx" class="inputTypeText w400" /></td>
</tr>
<tr>
<th scope="row"><div>{$lang->poll_item} 1</div></th>
<td><input type="text" name="item_tidx_1" class="inputTypeText w400" /></td>
</tr>
<tr>
<th scope="row"><div>{$lang->poll_item} 2</div></th>
<td><input type="text" name="item_tidx_2" class="inputTypeText w400" /></td>
</tr>
</table>
<div id="poll_source" style="display:none">
<div class="table">
<table width="100%" border="1" cellspacing="0">
<col width="100" />
<col />
<tr>
<th scope="row"><div><label>{$lang->poll_chk_count}</label></div></th>
<td><input type="text" name="checkcount_tidx" value="1" size="1" /></td>
</tr>
<tr>
<th scope="row"><div>{$lang->poll_title}</div></th>
<td><input type="text" name="title_tidx" /></td>
</tr>
<tr>
<th scope="row"><div>{$lang->poll_item} 1</div></th>
<td><input type="text" name="item_tidx_1" /></td>
</tr>
<tr>
<th scope="row"><div>{$lang->poll_item} 2</div></th>
<td><input type="text" name="item_tidx_2" /></td>
</tr>
</table>
</div>
<button type="button" class="_add_item">{$lang->cmd_add_item}</button>
<button type="button" class="_del_item">{$lang->cmd_del_item}</button>
<button type="button" class="_del_poll">{$lang->cmd_del_poll}</button>

View file

@ -7,14 +7,14 @@
<table width="100%" border="1" cellspacing="0">
<thead>
<tr>
<th scope="col"><div>&nbsp;</div></th>
<th scope="col" class="half_wide"><div>{$lang->document}</div></th>
<th scope="col" class="half_wide"><div>{$lang->comment}</div></th>
<th scope="col">&nbsp;</th>
<th scope="col">{$lang->document}</th>
<th scope="col">{$lang->comment}</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="2"><div>{$lang->editor_skin}</div></th>
<th rowspan="2">{$lang->editor_skin}</th>
<td colspan="2"><p>{$lang->about_editor_skin}</p></td>
</tr>
<tr>
@ -46,7 +46,7 @@
</td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->content_style}</div></th>
<th rowspan="2">{$lang->content_style}</th>
<td colspan="2"><p>{$lang->about_content_style}</p></td>
</tr>
<tr>
@ -66,44 +66,44 @@
</td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->content_font}</div></th>
<th rowspan="2">{$lang->content_font}</th>
<td colspan="2"><p>{$lang->about_content_font}</p></td>
</tr>
<tr>
<td colspan="2">
<input type="text" name="content_font" value="{str_replace(array('"','\''),'',$editor_config->content_font)}" class="inputTypeText w400" />
<input type="text" name="content_font" value="{str_replace(array('"','\''),'',$editor_config->content_font)}" />
</td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->content_font_size}</div></th>
<th rowspan="2">{$lang->content_font_size}</th>
<td colspan="2"><p>{$lang->about_content_font_size}</p></td>
</tr>
<tr>
<td colspan="2">
<input type="text" name="content_font_size" value="{$editor_config->content_font_size}" class="inputTypeText w80" />
<input type="text" name="content_font_size" value="{$editor_config->content_font_size}" />
</td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->editor_height}</div></th>
<th rowspan="2">{$lang->editor_height}</th>
<td colspan="2"><p>{$lang->about_editor_height}</p></td>
</tr>
<tr>
<td>
<input type="text" name="editor_height" value="{$editor_config->editor_height}" class="inputTypeText w80" />px
<input type="text" name="editor_height" value="{$editor_config->editor_height}" />px
</td>
<td>
<input type="text" name="comment_editor_height" value="{$editor_config->comment_editor_height}" class="inputTypeText w80" />px
<input type="text" name="comment_editor_height" value="{$editor_config->comment_editor_height}" />px
</td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->enable_autosave}</div></th>
<th rowspan="2">{$lang->enable_autosave}</th>
<td colspan="2"><p>{$lang->about_enable_autosave}</p></td>
</tr>
<tr>
<td colspan="2"><input type="checkbox" value="Y" name="enable_autosave" <!--@if($editor_config->enable_autosave=='Y')-->checked="checked"<!--@end-->/></td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->enable_html_grant}</div></th>
<th rowspan="2">{$lang->enable_html_grant}</th>
<td colspan="2"><p>{$lang->about_enable_html_grant}</p></td>
</tr>
<tr>
@ -125,7 +125,7 @@
</td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->upload_file_grant}</div></th>
<th rowspan="2">{$lang->upload_file_grant}</th>
<td colspan="2"><p>{$lang->about_upload_file_grant}</p></td>
</tr>
<tr>
@ -151,7 +151,7 @@
</td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->enable_default_component_grant}</div></th>
<th rowspan="2">{$lang->enable_default_component_grant}</th>
<td colspan="2"><p>{$lang->about_default_component_grant}</p></td>
</tr>
<tr>
@ -175,7 +175,7 @@
</td>
</tr>
<tr>
<th rowspan="2"><div>{$lang->enable_component_grant}</div></th>
<th rowspan="2">{$lang->enable_component_grant}</th>
<td colspan="2"><p>{$lang->about_component_grant}</p></td>
</tr>
<tr>

View file

@ -10,7 +10,7 @@
<input type="hidden" name="component_name" value="{$component_name}" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->component_name}</div></th>
<td>{$component->component_name} ver. {$component->version}</td>
</tr>
@ -23,7 +23,7 @@
</td>
</tr>
<!--@if($component->link)-->
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->component_link}</div></th>
<td><a href="#" onclick="winopen('{$component->link}');return false;">{$component->link}</a></td>
</tr>
@ -33,13 +33,13 @@
<tr class="row{$cycle_idx}">
<th scope="row"><div>{$val->title}</div></th>
<td>
<input type="text" name="{$key}" value="{$val->value}" class="inputTypeText w400" />
<input type="text" name="{$key}" value="{$val->value}" />
<p>{$val->description}</p>
</td>
</tr>
<!--@end-->
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->grant}</div></th>
<td>
<!--@foreach($group_list as $key => $val)-->

View file

@ -5,7 +5,7 @@
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->component_author}</div></th>
<td>
<!--@foreach($component->author as $author)-->
@ -17,7 +17,7 @@
<th scope="row"><div>{$lang->homepage}</div></th>
<td class="blue"><a href="{$component->homepage}" onclick="window.open(this.href);return false;">{$component->homepage}</a></td>
</tr><!--@end-->
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->regdate}</div></th>
<td>{zdate(str_replace('-',"",$component->date), 'Y-m-d')}</td>
</tr>
@ -32,7 +32,7 @@
</td>
</tr><!--@end-->
<!--@if($component->description)-->
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->component_description}</div></th>
<td>{nl2br(trim($component->description))}</td>
</tr><!--@end-->
@ -50,7 +50,7 @@
{$history->version}<br />
{zdate($history->date, 'Y-m-d')}
</div></th>
<td class="wide">
<td >
<!--@foreach($history->author as $author)-->
<p>{$author->name} (<a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$author->homepage}</a> / <a href="mailto:{$author->email_address}">{$author->email_address}</a>)</p>
<!--@endforeach-->

View file

@ -8,7 +8,7 @@
<input type="hidden" name="act" value="procFileAdminInsertConfig" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr class="row2">
<tr>
<th scope="col"><div>{$lang->allow_outlink}</div></th>
<td>
<select name="allow_outlink">
@ -18,39 +18,39 @@
<p>{$lang->about_allow_outlink}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="col"><div>{$lang->allow_outlink_format}</div></th>
<td>
<input type="text" name="allow_outlink_format" value="{$config->allow_outlink_format}" class="inputTypeText" />
<input type="text" name="allow_outlink_format" value="{$config->allow_outlink_format}" />
<p>{$lang->about_allow_outlink_format}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="col"><div>{$lang->allow_outlink_site}</div></th>
<td>
<textarea name="allow_outlink_site" class="fullWidth">{$config->allow_outlink_site}</textarea>
<p>{$lang->about_allow_outlink_site}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="col"><div>{$lang->allowed_filesize}</div></th>
<td>
<input type="text" name="allowed_filesize" value="{$config->allowed_filesize}" class="inputTypeText" size="3" />MB
<input type="text" name="allowed_filesize" value="{$config->allowed_filesize}" size="3" />MB
<p>{$lang->about_allowed_filesize}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allowed_attach_size}</div></th>
<td>
<input type="text" name="allowed_attach_size" value="{$config->allowed_attach_size}" class="inputTypeText" size="3" />MB
<input type="text" name="allowed_attach_size" value="{$config->allowed_attach_size}" size="3" />MB
/ {ini_get('upload_max_filesize')}
<p>{$lang->about_allowed_attach_size}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="col"><div>{$lang->allowed_filetypes}</div></th>
<td>
<input type="text" name="allowed_filetypes" value="{$config->allowed_filetypes}" class="inputTypeText w100" />
<input type="text" name="allowed_filetypes" value="{$config->allowed_filetypes}" />
<p>{$lang->about_allowed_filetypes}</p>
</td>
</tr>

View file

@ -5,25 +5,25 @@
<h3 class="h3">{$lang->file}</h3>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr class="row2">
<tr>
<th scope="col"><div>{$lang->allowed_filesize}</div></th>
<td>
<input type="text" name="allowed_filesize" value="{$file_config->allowed_filesize}" class="inputTypeText" size="3" />MB
<input type="text" name="allowed_filesize" value="{$file_config->allowed_filesize}" size="3" />MB
<p>{$lang->about_allowed_filesize}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allowed_attach_size}</div></th>
<td>
<input type="text" name="allowed_attach_size" value="{$file_config->allowed_attach_size}" class="inputTypeText" size="3" />MB
<input type="text" name="allowed_attach_size" value="{$file_config->allowed_attach_size}" size="3" />MB
/ {ini_get('upload_max_filesize')}
<p>{$lang->about_allowed_attach_size}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="col"><div>{$lang->allowed_filetypes}</div></th>
<td>
<input type="text" name="allowed_filetypes" value="{$file_config->allowed_filetypes}" class="inputTypeText w100" />
<input type="text" name="allowed_filetypes" value="{$file_config->allowed_filetypes}" />
<p>{$lang->about_allowed_filetypes}</p>
</td>
</tr>

View file

@ -212,7 +212,7 @@ function displayProgress(total, cur) {
$stat = jQuery('#status');
if(!$stat.find('div.progress1').length) {
$stat.html( '<div class="progressBox"><div class="progress1"></div><div class="progress2"></div><div class="clear"></div></div>' );
$stat.html( '<div class="progressBox"><div class="progress1"></div><div class="progress2"></div></div>' );
}
$stat

View file

@ -8,5 +8,5 @@ function doPreProcessing(form){var xml_file,type,resp,prepared=false,$=jQuery,$s
function on_complete(ret){var $reload,$cont,fo_proc,fo_import,elems,i,c,key,to_copy;prepared=true;$status.empty();$reload=$('#btn_reload');$cont=$('#btn_continue');if(ret.status==-1){$form.show();$reload.show();$process.hide();$cont.hide();return alert(ret.message)};$reload.hide();$cont.show();fo_proc=get_by_id('fo_process');elems=fo_proc.elements;for(i=0,c=resp.length;i<c;i++){key=resp[i];elems[key]?elems[key].value=ret[key]:0};fo_import=get_by_id('fo_import');if(fo_import){to_copy=['target_module','guestbook_target_module','user_id','unit_count'];for(i=0,c=to_copy.length;i<c;i++){key=to_copy[i];if(fo_import.elements[key])fo_proc.elements[key].value=fo_import.elements[key].value}};doImport()};exec_xml('importer','procImporterAdminPreProcessing',{type:type,xml_file:xml_file},on_complete,resp=['error','message','type','total','cur','key','status']);return false}
function doImport(){var form=get_by_id('fo_process'),elems=form.elements,i,c,params={},resp;for(i=0,c=elems.length;i<c;i++)params[elems[i].name]=elems[i].value;displayProgress(params.total,params.cur)
function on_complete(ret,response_tags){var i,c,key;for(i=0,c=resp.length;i<c;i++){key=resp[i];elems[key]?elems[key].value=ret_obj[key]:0};ret.total=parseInt(ret.total,10)||0;ret.cur=parseInt(ret.cur,10)||0;if(ret.total>ret.cur){doImport()}else{alert(ret.message);try{form.reset();get_by_id('fo_import').reset();jQuery('#process').hide();jQuery('#importForm').show()}catch(e){}}};show_waiting_message=false;exec_xml('importer','procImporterAdminImport',params,on_complete,resp=['error','message','type','total','cur','key']);show_waiting_message=true;return false}
function displayProgress(total,cur){var per,stat,$stat;per=Math.max(total?Math.round(cur/total*100):100,1);$stat=jQuery('#status');if(!$stat.find('div.progress1').length)$stat.html('<div class="progressBox"><div class="progress1"></div><div class="progress2"></div><div class="clear"></div></div>');$stat.find('div.progress1').html(per+'&nbsp;').css('width',per+'%').end().find('div.progress2').text(cur+'/'+total)}
function displayProgress(total,cur){var per,stat,$stat;per=Math.max(total?Math.round(cur/total*100):100,1);$stat=jQuery('#status');if(!$stat.find('div.progress1').length)$stat.html('<div class="progressBox"><div class="progress1"></div><div class="progress2"></div></div>');$stat.find('div.progress1').html(per+'&nbsp;').css('width',per+'%').end().find('div.progress2').text(cur+'/'+total)}
function insertSelectedModule(id,module_srl,mid,browser_title){get_by_id(id).value=module_srl;get_by_id('_'+id).value=browser_title+' ('+mid+')'}

View file

@ -2,27 +2,27 @@
<tr>
<th rowspan="6" scope="row" class="hr"><label for="radio2">{$lang->admin_title}</label></th>
<th class="second" scope="row"><label for="textfield21">{$lang->user_id}</label></th>
<td><input type="text" id="textfield21" name="user_id" value="admin" class="inputTypeText" /></td>
<td><input type="text" id="textfield21" name="user_id" value="admin" /></td>
</tr>
<tr>
<th class="second" scope="row"><label for="textfield22">{$lang->password1}</label></th>
<td><input id="textfield22" type="password" name="password1" class="inputTypeText" /></td>
<td><input id="textfield22" type="password" name="password1" /></td>
</tr>
<tr>
<th class="second" scope="row"><label for="textfield23">{$lang->password2}</label></th>
<td><input id="textfield23" type="password" name="password2" class="inputTypeText" /></td>
<td><input id="textfield23" type="password" name="password2" /></td>
</tr>
<tr>
<th class="second" scope="row"><label for="textfield24">{$lang->user_name}</label></th>
<td><input id="textfield24" type="text" name="user_name" class="inputTypeText" /></td>
<td><input id="textfield24" type="text" name="user_name" /></td>
</tr>
<tr>
<th class="second" scope="row"><label for="textfield25">{$lang->nick_name}</label></th>
<td><input id="textfield25" type="text" name="nick_name" class="inputTypeText" /></td>
<td><input id="textfield25" type="text" name="nick_name" /></td>
</tr>
<tr>
<th class="second hr" scope="row"><label for="textfield26">{$lang->email_address}</label></th>
<td class="hr"><input id="textfield26" type="text" name="email_address" class="inputTypeText" /></td>
<td class="hr"><input id="textfield26" type="text" name="email_address" /></td>
</tr>
<!-- 기타 정보 -->

View file

@ -54,7 +54,7 @@
$security->encodeHTML('skin_list..title');
// Sample Code
Context::set('sample_code', htmlspecialchars('<form action="{getUrl()}" method="get"><input type="hidden" name="vid" value="{$vid}" /><input type="hidden" name="mid" value="{$mid}" /><input type="hidden" name="act" value="IS" /><input type="text" name="is_keyword" class="inputTypeText" value="{$is_keyword}" /><span class="btn"><input type="submit" value="{$lang->cmd_search}" /></span></form>') );
Context::set('sample_code', htmlspecialchars('<form action="{getUrl()}" method="get"><input type="hidden" name="vid" value="{$vid}" /><input type="hidden" name="mid" value="{$mid}" /><input type="hidden" name="act" value="IS" /><input type="text" name="is_keyword" value="{$is_keyword}" /><span class="btn"><input type="submit" value="{$lang->cmd_search}" /></span></form>') );
$this->setTemplateFile("index");
}

View file

@ -10,10 +10,10 @@
<input type="hidden" name="target_module_srl" id="target_module_srl" value="{$config->target_module_srl}" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr class="row2">
<tr>
<th scope="row">{$lang->sample_code}</th>
<td class="wide">
<textarea class="inputTypeTextArea fullWidth" readonly="readonly">{$sample_code}</textarea>
<td >
<textarea readonly="readonly">{$sample_code}</textarea>
<p>{$lang->about_sample_code}</p>
</td>
</tr>
@ -28,7 +28,7 @@
<p>{$lang->about_skin}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row">{$lang->target}</th>
<td>
<select name="target">

View file

@ -12,9 +12,9 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->skin}</th>
<td class="wide" >{$skin_info->title}</td>
<td >{$skin_info->title}</td>
</tr>
<tr class="row2">
<tr>
<th scope="row">{$lang->skin_author}</th>
<td>
<!--@foreach($skin_info->author as $author)-->
@ -26,7 +26,7 @@
<th scope="row">{$lang->homepage}</th>
<td><a href="{$skin_info->homepage}" onclick="window.open(this.href);return false;">{$skin_info->homepage}</a>&nbsp;</td>
</tr>
<tr class="row2">
<tr>
<th scope="row">{$lang->date}</th>
<td>{zdate($skin_info->date, 'Y-m-d')}</td>
</tr>
@ -40,7 +40,7 @@
&nbsp;
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row">{$lang->description}</th>
<td>{nl2br($skin_info->description)}</td>
</tr>
@ -51,7 +51,7 @@
<table width="100%" border="1" cellspacing="0">
<tr valign="top">
<th scope="row">{$lang->colorset}</th>
<td class="wide">
<td >
<!--@foreach($skin_info->colorset as $key => $val)-->
<!--@if($val->screenshot)-->
{@ $_img_info = getImageSize($val->screenshot); $_height = $_img_info[1]+40; $_width = $_img_info[0]+20; $_talign = "center"; }
@ -81,15 +81,15 @@
<caption>{$group}</caption>
<!--@end-->
<tr class="row2">
<tr>
<th scope="row">{$val->title}</th>
<td class="wide">
<td >
<!--@if($val->type=="text")-->
<!--@if(!$val->value)-->{@ $val->value = $val->default}<!--@endif-->
<input type="text" name="{$val->name}" value="{$val->value}" class="inputTypeText w400" />
<input type="text" name="{$val->name}" value="{$val->value}" />
<!--@elseif($val->type=="textarea")-->
<textarea name="{$val->name}" class="inputTypeTextArea w400">{$val->value}</textarea>
<textarea name="{$val->name}">{$val->value}</textarea>
<!--@elseif($val->type=="select")-->
<select name="{$val->name}">

View file

@ -34,7 +34,7 @@
<td><a href="{getUrl('act','dispLayoutAdminInsert','layout',$val->layout)}">{$lang->cmd_make}</a></td>
</tr>
<tr>
<td colspan="6" class="left">
<td colspan="6" >
{nl2br(trim($val->description))}
</td>
</tr>

View file

@ -34,7 +34,7 @@
<td><a href="{getUrl('act','dispLayoutAdminInsert','layout',$val->layout,'layout_type','M')}">{$lang->cmd_make}</a></td>
</tr>
<tr>
<td colspan="6" class="left">
<td colspan="6" >
{nl2br(trim($val->description))}
</td>
</tr>

View file

@ -22,15 +22,15 @@
<tbody>
<!--@foreach($layout_list as $no => $val)-->
<tr class="row{$cycle_idx}">
<td class="number center">{$no+1}</td>
<td>{$no+1}</td>
<td>
{$val->layout}
<!--@if($val->module_srl)-->
(module)
<!--@end-->
</td>
<td class="wide">{$val->title}</td>
<td class="nowrap">{zdate($val->regdate,"Y-m-d")}</td>
<td >{$val->title}</td>
<td>{zdate($val->regdate,"Y-m-d")}</td>
<td>
<!--@if(!$val->module_srl)-->
<a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$val->layout_srl)}" title="{htmlspecialchars($lang->cmd_layout_management)}" class="buttonSet buttonSetting"><span>{$lang->cmd_layout_management}</span></a>

View file

@ -23,10 +23,10 @@
</select>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row">{$lang->title}</th>
<td>
<input type="text" name="title" value="{$info->title}" class="inputTypeText w400" />
<input type="text" name="title" value="{$info->title}" />
<p>{$lang->about_title}</p>
</td>
</tr>

View file

@ -2,7 +2,7 @@
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->title}</div></th>
<td>{$layout_info->title} ver {$layout_info->version}</td>
</tr>
@ -15,7 +15,7 @@
</td>
</tr>
<!--@if($layout_info->homepage)-->
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->homepage}</div></th>
<td><a href="{$layout_info->author->homepage}" onclick="window.open(this.href);return false;">{$layout_info->homepage}</a></td>
</tr><!--@end-->
@ -24,7 +24,7 @@
<td>{zdate($layout_info->date, 'Y-m-d')}</td>
</tr>
<!--@if($layout_info->license || $layout_info->license_link)-->
<tr class="row2">
<tr>
<th scope="row"><div>{$lang->layout_license}</div></th>
<td>
{nl2br(trim($layout_info->license))}

View file

@ -2,33 +2,25 @@
<!--%import("js/layout_admin.js")-->
<!--%import("../../admin/tpl/css/admin.css")-->
<div id="popHeader" class="wide">
<h3 class="xeAdmin">레이아웃 이미지 목록</h3>
</div>
<div id="popBody">
<!--@foreach($layout_image_list as $no => $file)-->
{@$ext=substr(strrchr($file,'.'),1)}
<div class="filebox_preview_{$val->module_filebox_srl}" style="width:100px;height:100px;float:left; position:relative;margin-right:10px; ">
<!--@if($ext=='swf'||$ext=='flv')-->
<script type="text/javascript">//<![CDATA[
displayMultimedia('{getUrl('')}{$layout_image_path}{$file}', '100%', '100%');
//]]></script>
<!--@elseif(in_array($ext,array('gif','png','jpg','jpeg')))-->
<img src="{getUrl('')}{$layout_image_path}{$file}" width="100%" height="100%" />
<!--@end-->
<span class="small button" style="position:absolute;left:3px; top:3px;"><button type="button" onclick="selectLayoutImage(request_uri+'{$layout_image_path}{$file}');">{$lang->cmd_select}</button></span>
</div>
<!--@end-->
</div>
<div id="popFooter">
<form action="{Context::getRequestUri()}" target="hidden_iframe" method="post" onsubmit="return checkFile(this)" enctype="multipart/form-data">
<input type="hidden" name="module" value="layout" />
<input type="hidden" name="act" value="procLayoutAdminUserImageUpload" />
<input type="hidden" name="layout_srl" value="{$layout_srl}" />
<input name="user_layout_image" type="file" />
<span class="button black strong"><button type="submit">{$lang->cmd_save}</button></span>
</form>
</div>
<h1 class="h1">레이아웃 이미지 목록</h1>
<!--@foreach($layout_image_list as $no => $file)-->
{@$ext=substr(strrchr($file,'.'),1)}
<div class="filebox_preview_{$val->module_filebox_srl}" style="width:100px;height:100px;float:left; position:relative;margin-right:10px; ">
<!--@if($ext=='swf'||$ext=='flv')-->
<script type="text/javascript">//<![CDATA[
displayMultimedia('{getUrl('')}{$layout_image_path}{$file}', '100%', '100%');
//]]></script>
<!--@elseif(in_array($ext,array('gif','png','jpg','jpeg')))-->
<img src="{getUrl('')}{$layout_image_path}{$file}" width="100%" height="100%" />
<!--@end-->
<span class="btn"><button type="button" onclick="selectLayoutImage(request_uri+'{$layout_image_path}{$file}');">{$lang->cmd_select}</button></span>
</div>
<!--@end-->
<form action="{Context::getRequestUri()}" target="hidden_iframe" method="post" onsubmit="return checkFile(this)" enctype="multipart/form-data">
<input type="hidden" name="module" value="layout" />
<input type="hidden" name="act" value="procLayoutAdminUserImageUpload" />
<input type="hidden" name="layout_srl" value="{$layout_srl}" />
<input name="user_layout_image" type="file" />
<span class="button black strong"><button type="submit">{$lang->cmd_save}</button></span>
</form>
<iframe name="hidden_iframe" style="width:0;height:0;border:0"></iframe>

View file

@ -22,15 +22,15 @@
<tbody>
<!--@foreach($layout_list as $no => $val)-->
<tr class="row{$cycle_idx}">
<td class="number center">{$no+1}</td>
<td>{$no+1}</td>
<td>
{$val->layout}
<!--@if($val->module_srl)-->
(module)
<!--@end-->
</td>
<td class="wide">{$val->title}</td>
<td class="nowrap">{zdate($val->regdate,"Y-m-d")}</td>
<td >{$val->title}</td>
<td>{zdate($val->regdate,"Y-m-d")}</td>
<td>
<!--@if(!$val->module_srl)-->
<a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$val->layout_srl)}" title="{htmlspecialchars($lang->cmd_layout_management)}" class="buttonSet buttonSetting"><span>{$lang->cmd_layout_management}</span></a>

View file

@ -12,5 +12,4 @@
<img src="../../../{$val->screenshot}" alt="{$val->title}" style="border:1px solid #888888;padding:2px;margin:2px;"/>
<!--@end-->
</div>
<!--@if($key%2==1)--><div class="clear"></div><!--@end-->
<!--@end-->

View file

@ -13,8 +13,8 @@
<thead>
<tr>
<th scope="col">{$lang->no}</th>
<th scope="col" class="half_wide">{$lang->user_id}</th>
<th scope="col" class="half_wide">{$lang->description}</th>
<th scope="col">{$lang->user_id}</th>
<th scope="col">{$lang->description}</th>
<th scope="col">{$lang->regdate}</th>
<th scope="col">&nbsp;</th>
</tr>
@ -58,11 +58,11 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->user_id}</th>
<td class="wide"><input type="text" name="user_id" /></td>
<td ><input type="text" name="user_id" /></td>
</tr>
<tr>
<th scope="row">{$lang->description}</th>
<td class="left"><textarea name="description"></textarea></td>
<td ><textarea name="description"></textarea></td>
</tr>
</table>
</div>

View file

@ -15,21 +15,21 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->group_title}</th>
<td class="left"><input type="text" name="title" id="title" class="inputTypeText w400 lang_code" value="{$selected_group->title}"/></td>
<td ><input type="text" name="title" id="title" value="{$selected_group->title}"/></td>
</tr>
<!--@if($selected_group->is_default!='Y' && $selected_group->is_admin!='Y')-->
<tr class="row2">
<tr>
<th scope="row">{$lang->is_default}</th>
<td class="left"><input type="checkbox" name="is_default" value="Y" class="checkbox" /> {$lang->about_member_default}</td>
<td ><input type="checkbox" name="is_default" value="Y" class="checkbox" /> {$lang->about_member_default}</td>
</tr>
<!--@end-->
<tr>
<th scope="row">{$lang->description}</th>
<td class="left"><textarea name="description" class="inputTypeTextArea w400">{$selected_group->description}</textarea></td>
<td ><textarea name="description">{$selected_group->description}</textarea></td>
</tr>
<tr>
<th scope="row">{$lang->group_image_mark}</th>
<td class="left">
<td >
<div id="filebox_preview_image_mark" style="width:100px;height:100px;<!--@if(!$selected_group->image_mark)-->display:none<!--@endif-->"></div>
<input type="hidden" name="image_mark" value="{$selected_group->image_mark}" />
<span class="button black"><button type="button" onclick="XE.filebox.open(jQuery('[name=image_mark]').get(0), 'jpg,jpeg,gif,png')">{$lang->cmd_select}</button></span>

View file

@ -1,17 +1,11 @@
<load target="js/member_admin.js" usecdn="true" />
<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->cmd_member_group} ({$lang->target} : {count($member_list)})</h3>
</div>
<h1 class="h1">{$lang->cmd_member_group} ({$lang->target} : {count($member_list)})</h1>
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="manageMemberGroup" action="./" method="post" id="fo_management">
<input type="hidden" name="act" value="procMemberAdminUpdateMembersGroup" />
<input type="hidden" name="member_srl" value="{$member_srls}" />
<div id="popBody">
<input type="hidden" name="act" value="procMemberAdminUpdateMembersGroup" />
<input type="hidden" name="member_srl" value="{$member_srls}" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
@ -46,6 +40,5 @@
<!--@end-->
</table>
</div>
</div>
</form>

View file

@ -15,7 +15,7 @@
<thead>
<tr>
<th scope="col">{$lang->no}</th>
<th scope="col" class="wide">{$lang->title}</th>
<th scope="col" >{$lang->title}</th>
<th scope="col">{$lang->regdate}</th>
<th scope="col">&nbsp;</th>
</tr>
@ -23,9 +23,9 @@
<tbody>
<!--@foreach($menu_list as $no => $val)-->
<tr class="row{$cycle_idx}">
<td class="number center">{$no}</td>
<td class="wide">{$val->title}</td>
<td class="nowrap">{zdate($val->regdate,"Y-m-d")}</td>
<td>{$no}</td>
<td >{$val->title}</td>
<td>{zdate($val->regdate,"Y-m-d")}</td>
<td>
<a href="{getUrl('act','dispMenuAdminManagement','menu_srl',$val->menu_srl)}">{$lang->cmd_setup}</a>
<button type="button" onclick="doDeleteMenu('{$val->menu_srl}');return false;" title="{$lang->cmd_delete}" class="text">{$lang->cmd_delete}</button>

View file

@ -12,10 +12,10 @@
<th scope="col">{$lang->cmd_menu_insert}</th>
<td>{nl2br($lang->about_menu_management)}</td>
</tr>
<tr class="row2">
<tr>
<th scope="col">{$lang->title}</th>
<td>
<input type="text" name="title" value="{$menu_info->title}" class="inputTypeText w400" />
<input type="text" name="title" value="{$menu_info->title}" />
<p>{$lang->about_title}</p>
</td>
</tr>

View file

@ -19,15 +19,15 @@
<tr>
<th scope="row">{$lang->menu_name}</th>
<td>
<input type="text" name="menu_name" id="menu_name" value="{$item_info->name}" class="inputTypeText w300"/>
<input type="text" name="menu_name" id="menu_name" value="{$item_info->name}" />
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','menu_name')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a> </td>
</tr>
<tr>
<th scope="row">{$lang->menu_url}</th>
<td>
<input type="text" name="menu_url" value="{$item_info->url}" class="inputTypeText" />
<input type="text" name="menu_url" value="{$item_info->url}" />
<a href="{getUrl('module','menu','act','dispMenuAdminMidList')}" onclick="popopen(this.href);return false;" class="button black"><span>{$lang->cmd_search_mid}</span> </a>
<p class="clear">{$lang->about_menu_url}</p>
<p>{$lang->about_menu_url}</p>
</td>
</tr>
<tr>
@ -55,7 +55,7 @@
</div>
<input type="file" name="menu_normal_btn" value="" class="inputTypeText" onchange="doMenuUploadButton(this); return false;"/>
<input type="file" name="menu_normal_btn" value="" onchange="doMenuUploadButton(this); return false;"/>
</td>
@ -69,7 +69,7 @@
</div>
<input type="file" name="menu_hover_btn" value="" class="inputTypeText" onchange="doMenuUploadButton(this); return false;"/>
<input type="file" name="menu_hover_btn" value="" onchange="doMenuUploadButton(this); return false;"/>
</td>
@ -83,7 +83,7 @@
</div>
<input type="file" name="menu_active_btn" value="" class="inputTypeText" onchange="doMenuUploadButton(this); return false;"/>
<input type="file" name="menu_active_btn" value="" onchange="doMenuUploadButton(this); return false;"/>
</td>

View file

@ -33,7 +33,7 @@
</tr>
<tr>
<th scope="col">{$lang->menu_management}</th>
<td class="left">
<td >
{nl2br($lang->about_menu_management)}
<button type="button" onclick="doReloadTreeMenu('{$menu_info->menu_srl}');return false;">{$lang->cmd_remake_cache}</button>
</td>
@ -47,20 +47,20 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="col">{$lang->title}</th>
<td class="left">
<td >
{$menu_info->title}
</td>
</tr>
<tr>
<th scope="col">{$lang->menu_management}</th>
<td class="left">{nl2br($lang->about_menu_management)}</td>
<td >{nl2br($lang->about_menu_management)}</td>
</tr>
</table>
</div>
<!--@end-->
<form ruleset="insertMenuItem" id="fo_menu" action="./" method="post" class="clear" enctype="multipart/form-data">
<form ruleset="insertMenuItem" id="fo_menu" action="./" method="post" enctype="multipart/form-data">
<input type="hidden" name="act" value="procMenuAdminInsertItem" />
<input type="hidden" name="title" value="{$menu_info->title}" />
<input type="hidden" name="menu_srl" value="{$menu_info->menu_srl}" />

View file

@ -1,55 +1,50 @@
<!--%import("js/menu_admin.js")-->
<!--%import("../../common/css/popup.css")-->
<div id="popHeader">
<h3 class="xeAdmin">{$lang->cmd_search_mid}</h3>
</div>
<div id="popBody">
<form action="./" method="get">
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="{$act}" />
<select name="module_category_srl" class="w5">
<option value="">{$lang->module_category}</option>
<!--@foreach($module_category as $key => $val)-->
<option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select>
<select name="target_module" class="w5">
<option value="">{$lang->module}</option>
<!--@foreach($module_list as $key => $val)-->
<option value="{$val->module}" <!--@if($target_module ==$val->module)-->selected="selected"<!--@end-->>{$val->module}</option>
<!--@end-->
</select>
<input type="submit" name="go_button" id="go_button" value="GO" class="buttonTypeGo" />
<table cellspacing="0" class="rowTable topGap">
<thead>
<tr>
<th scope="row"><div>{$lang->module_category}</div></th>
<th scope="row"><div>{$lang->module}</div></th>
<th scope="row" class="wide"><div>{$lang->mid}</div></th>
<th scope="row"><div>{$lang->cmd_select}</div></th>
</tr>
</thead>
<tbody>
<!--@foreach($mid_list as $key => $val)-->
<tr>
<td class="nowrap center">
<!--@if(!$val->module_category_srl)-->
{$lang->not_exists}
<!--@else-->
{$module_category[$val->module_category_srl]->title}
<!--@end-->
</td>
<td class="center nowrap">{$val->module}</td>
<td>{$val->browser_title} ({$key})</td>
<td class="modify center"><a href="#" onclick="doInsertMid('{$key}','{$menu_id}'); return false;">{$lang->cmd_select}</a></td>
</tr>
<!--@end-->
</tbody>
</table>
</form>
</div>
<h1 class="h1">{$lang->cmd_search_mid}</h1>
<form action="./" method="get">
<input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="{$act}" />
<select name="module_category_srl">
<option value="">{$lang->module_category}</option>
<!--@foreach($module_category as $key => $val)-->
<option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select>
<select name="target_module">
<option value="">{$lang->module}</option>
<!--@foreach($module_list as $key => $val)-->
<option value="{$val->module}" <!--@if($target_module ==$val->module)-->selected="selected"<!--@end-->>{$val->module}</option>
<!--@end-->
</select>
<input type="submit" name="go_button" id="go_button" value="GO" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<thead>
<tr>
<th scope="row">{$lang->module_category}</th>
<th scope="row">{$lang->module}</th>
<th scope="row" >{$lang->mid}</th>
<th scope="row">{$lang->cmd_select}</th>
</tr>
</thead>
<tbody>
<!--@foreach($mid_list as $key => $val)-->
<tr>
<td>
<!--@if(!$val->module_category_srl)-->
{$lang->not_exists}
<!--@else-->
{$module_category[$val->module_category_srl]->title}
<!--@end-->
</td>
<td>{$val->module}</td>
<td>{$val->browser_title} ({$key})</td>
<td><button type="button" onclick="doInsertMid('{$key}','{$menu_id}'); return false;">{$lang->cmd_select}</button></td>
</tr>
<!--@end-->
</tbody>
</table>
</div>
</form>

View file

@ -14,7 +14,7 @@
<table width="100%" border="1" cellspacing="0">
<thead>
<tr>
<th scope="col" class="wide">{$lang->category_title}</th>
<th scope="col" >{$lang->category_title}</th>
<th scope="col">{$lang->regdate}</th>
<th scope="col" colspan="2">&nbsp;</th>
</tr>
@ -27,8 +27,8 @@
<!--@end-->
<!--@foreach($category_list as $key => $val)-->
<tr>
<td class="wide">{$val->title}</td>
<td class="nowrap">{zdate($val->regdate,"Y-m-d H:i:s")}</td>
<td >{$val->title}</td>
<td>{zdate($val->regdate,"Y-m-d H:i:s")}</td>
<td>
<a href="{getUrl('module_category_srl',$val->module_category_srl)}">{$lang->cmd_modify}</a>
<button type="button" class="text" onclick="doUpdateCategory('{$val->module_category_srl}','{$lang->confirm_delete}');return false;">{$lang->cmd_delete}</button>

View file

@ -10,7 +10,7 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->module}</th>
<td class="wide">{$module_info->module}</td>
<td >{$module_info->module}</td>
</tr>
<tr>
<th scope="row">{$lang->mid}</th>
@ -28,45 +28,45 @@
<th scope="col"><div>{$lang->mid}<div></th>
<th scope="col"><div>{$lang->browser_title}<div></th>
</tr>
<tr class="row2">
<td><input type="text" name="mid_1" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_1" class="inputTypeText w200" /></td>
<tr>
<td><input type="text" name="mid_1" /></td>
<td><input type="text" name="browser_title_1" /></td>
</tr>
<tr>
<td><input type="text" name="mid_2" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_2" class="inputTypeText w200" /></td>
</tr>
<tr class="row2">
<td><input type="text" name="mid_3" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_3" class="inputTypeText w200" /></td>
<td><input type="text" name="mid_2" /></td>
<td><input type="text" name="browser_title_2" /></td>
</tr>
<tr>
<td><input type="text" name="mid_4" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_4" class="inputTypeText w200" /></td>
</tr>
<tr class="row2">
<td><input type="text" name="mid_5" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_5" class="inputTypeText w200" /></td>
<td><input type="text" name="mid_3" /></td>
<td><input type="text" name="browser_title_3" /></td>
</tr>
<tr>
<td><input type="text" name="mid_6" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_6" class="inputTypeText w200" /></td>
</tr>
<tr class="row2">
<td><input type="text" name="mid_7" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_7" class="inputTypeText w200" /></td>
<td><input type="text" name="mid_4" /></td>
<td><input type="text" name="browser_title_4" /></td>
</tr>
<tr>
<td><input type="text" name="mid_8" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_8" class="inputTypeText w200" /></td>
</tr>
<tr class="row2">
<td><input type="text" name="mid_9" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_9" class="inputTypeText w200" /></td>
<td><input type="text" name="mid_5" /></td>
<td><input type="text" name="browser_title_5" /></td>
</tr>
<tr>
<td><input type="text" name="mid_10" class="inputTypeText w200" /></td>
<td><input type="text" name="browser_title_10" class="inputTypeText w200" /></td>
<td><input type="text" name="mid_6" /></td>
<td><input type="text" name="browser_title_6" /></td>
</tr>
<tr>
<td><input type="text" name="mid_7" /></td>
<td><input type="text" name="browser_title_7" /></td>
</tr>
<tr>
<td><input type="text" name="mid_8" /></td>
<td><input type="text" name="browser_title_8" /></td>
</tr>
<tr>
<td><input type="text" name="mid_9" /></td>
<td><input type="text" name="browser_title_9" /></td>
</tr>
<tr>
<td><input type="text" name="mid_10" /></td>
<td><input type="text" name="browser_title_10" /></td>
</tr>
</table>
</div>

View file

@ -1,37 +1,32 @@
<load target="./js/module_admin.js" usecdn="true" />
<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->filebox}</h3>
</div>
<h1 class="h1">{$lang->filebox}</h1>
<form action="{getUrl('')}" method="post" enctype="multipart/form-data">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleFileBoxAdd" />
<input type="hidden" name="vid" value="{$vid}" />
<input type="hidden" name="filter" value="{$filter}" />
<input type="hidden" name="input" value="{$input}" />
<div id="popBody">
<table class="rowTable" cellspacing="0">
<tbody>
<tr>
<th>{$lang->description}</th>
<td><input type="text" name="comment" /></td>
</tr>
<tr>
<th>{$lang->file}</th>
<td><input type="file" name="addfile" />
<p>
<!--@if($arrfilter && is_array($arrfilter))-->
{@sprintf($lang->about_file_extension,join(", ",$arrfilter ))}
<!--@end-->
</p>
</td>
</tr>
</tbody>
</table>
</div>
<div id="popFooter">
<span class="button black"><input type="submit" value="{$lang->cmd_submit}" /></span>
</div>
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleFileBoxAdd" />
<input type="hidden" name="vid" value="{$vid}" />
<input type="hidden" name="filter" value="{$filter}" />
<input type="hidden" name="input" value="{$input}" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tbody>
<tr>
<th>{$lang->description}</th>
<td><input type="text" name="comment" /></td>
</tr>
<tr>
<th>{$lang->file}</th>
<td><input type="file" name="addfile" />
<p>
<!--@if($arrfilter && is_array($arrfilter))-->
{@sprintf($lang->about_file_extension,join(", ",$arrfilter ))}
<!--@end-->
</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_submit}" /></span>
</div>
</form>

View file

@ -1,65 +1,60 @@
<!--%load_js_plugin("filebox")-->
<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->filebox}</h3>
</div>
<div id="popBody">
<table class="rowTable" cellspacing="0" width="90%">
<thead>
<tr>
<th><div>{$lang->file}</div></th>
<th><div>{$lang->description}</div></th>
<th><div>{$lang->regdate}</div></th>
<th><div>&nbsp;</div></th>
</tr>
</thead>
<tbody>
<h1 class="h1">{$lang->filebox}</h1>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<thead>
<tr>
<th>{$lang->file}</th>
<th>{$lang->description}</th>
<th>{$lang->regdate}</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
<!--@foreach($filebox_list as $key=>$val)-->
<tr>
<td>
<div id="filebox_preview_{$val->module_filebox_srl}">
<!--@if($val->fileextension=='swf')-->
<object height="100" width="100" flashvars="" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" xmlns="http://www.w3.org/1999/xhtml">
<param value="{getUrl('')}{$val->filename}" name="movie" xmlns="http://www.w3.org/1999/xhtml" />
<param value="transparent" name="wmode" xmlns="http://www.w3.org/1999/xhtml" />
<param value="sameDomain" name="allowScriptAccess" xmlns="http://www.w3.org/1999/xhtml" />
<param value="high" name="quality" xmlns="http://www.w3.org/1999/xhtml" />
<embed height="100" width="100" wmode="transparent" flashvars="" autostart="false" src="{getUrl('')}{$val->filename}" xmlns="http://www.w3.org/1999/xhtml" />
</object>
<!--@elseif(in_array($val->fileextension,array('gif','png','jpg','jpeg')))-->
<img src="{getUrl('')}{$val->filename}" width="100" height="100" />
<!--@end-->
</div>
</td>
<td class="wide">{$val->comment}&nbsp;</td>
<td class="nowrap">{zdate($val->regdate,'Y-m-d H:i')}</td>
<td>
<!--@if(!$filter || (is_array($arrfilter) && in_array($val->fileextension,$arrfilter)))-->
<span class="small button black"><button type="button" onclick="XE.filebox.selectFile('{getUrl('')}{$val->filename}','{$val->module_filebox_srl}');">{$lang->cmd_select}</button></span>
<!--@end-->
<span class="small button"><button type="button" onclick="XE.filebox.deleteFile('{$val->module_filebox_srl}');">{$lang->cmd_delete}</button></span>
</td>
</tr>
<tr>
<td>
<div id="filebox_preview_{$val->module_filebox_srl}">
<!--@if($val->fileextension=='swf')-->
<object height="100" width="100" flashvars="" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" xmlns="http://www.w3.org/1999/xhtml">
<param value="{getUrl('')}{$val->filename}" name="movie" xmlns="http://www.w3.org/1999/xhtml" />
<param value="transparent" name="wmode" xmlns="http://www.w3.org/1999/xhtml" />
<param value="sameDomain" name="allowScriptAccess" xmlns="http://www.w3.org/1999/xhtml" />
<param value="high" name="quality" xmlns="http://www.w3.org/1999/xhtml" />
<embed height="100" width="100" wmode="transparent" flashvars="" autostart="false" src="{getUrl('')}{$val->filename}" xmlns="http://www.w3.org/1999/xhtml" />
</object>
<!--@elseif(in_array($val->fileextension,array('gif','png','jpg','jpeg')))-->
<img src="{getUrl('')}{$val->filename}" width="100" height="100" />
<!--@end-->
</div>
</td>
<td >{$val->comment}&nbsp;</td>
<td>{zdate($val->regdate,'Y-m-d H:i')}</td>
<td>
<!--@if(!$filter || (is_array($arrfilter) && in_array($val->fileextension,$arrfilter)))-->
<button type="button" onclick="XE.filebox.selectFile('{getUrl('')}{$val->filename}','{$val->module_filebox_srl}');">{$lang->cmd_select}</button>
<!--@end-->
<button type="button" onclick="XE.filebox.deleteFile('{$val->module_filebox_srl}');">{$lang->cmd_delete}</button>
</td>
</tr>
<!--@end-->
</tbody>
</table>
<!-- 페이지 네비게이션 -->
<div class="pagination a1">
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
<!--@while($page_no = $page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
<strong>{$page_no}</strong>
<!--@else-->
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
<!--@end-->
<!--@end-->
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
</div>
</tbody>
</table>
</div>
<div id="popFooter">
<a href="{getUrl('','module','module','act','dispModuleFileBoxAdd','filter',$filter,'input',$input)}" class="button black"><span>{$lang->cmd_registration}</span></a>
<!-- 페이지 네비게이션 -->
<div class="pagination">
<a href="{getUrl('page','','module_srl','')}" class="direction">&lsaquo; {$lang->first_page}</a>
<!--@while($page_no = $page_navigation->getNextPage())-->
<!--@if($page == $page_no)-->
<strong>{$page_no}</strong>
<!--@else-->
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
<!--@end-->
<!--@end-->
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="direction">{$lang->last_page} &rsaquo;</a>
</div>
<div class="btnArea">
<span class="btn"><a href="{getUrl('','module','module','act','dispModuleFileBoxAdd','filter',$filter,'input',$input)}">{$lang->cmd_registration}</a></span>
</div>

View file

@ -1,7 +1,2 @@
<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->bundle_addition_setup}</h3>
</div>
<div id="popBody">
{$setup_content}
</div>
<h1 class="h1">{$lang->bundle_addition_setup}</h1>
{$setup_content}

View file

@ -24,7 +24,7 @@
<!--@foreach($grant_list as $grant_name => $grant_item)-->
<tr class="row{$cycle_idx}">
<th scope="row">{$grant_item->title}</th>
<td class="wide">
<td >
<select name="{$grant_name}_default" class="grant_default">
<!--@if($grant_item->default == 'guest')--><option value="0">{$lang->grant_to_all}</option><!--@end-->
<!--@if($grant_item->default != 'manager')--><option value="-1">{$lang->grant_to_login_user}</option><!--@end-->

View file

@ -14,7 +14,7 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row" rowspan="2">{$lang->admin_id}</th>
<td class="wide">
<td >
<select name="_admin_member" multiple="multiple" size="{count($admin_member)?count($admin_member):1}" class="w200">
<!--@foreach($admin_member as $key => $val)-->
<option value="{$val->user_id}">{$val->nick_name} ({$val->user_id})</option>
@ -46,7 +46,7 @@
<!--@foreach($grant_list as $grant_name => $grant_item)-->
<tr class="row{$cycle_idx}">
<th scope="row">{$grant_item->title}</th>
<td class="wide">
<td >
<select name="{$grant_name}_default" class="grant_default">
<!--@if($grant_item->default == 'guest')--><option value="0" <!--@if($default_grant[$grant_name]=='all')-->selected="selected"<!--@end-->>{$lang->grant_to_all}</option><!--@end-->
<!--@if($grant_item->default != 'manager')--><option value="-1" <!--@if($default_grant[$grant_name]=='member')-->selected="selected"<!--@end-->>{$lang->grant_to_login_user}</option><!--@end-->

View file

@ -1,78 +1,76 @@
<load target="./js/module_admin.js" usecdn="true" />
<load target="../../common/css/popup.css" usecdn="true" />
<div id="popHeader">
<h3 class="xeAdmin">{$lang->module_selector}</h3>
</div>
<div id="popBody">
<form action="./" method="post">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="dispModuleSelectList" />
<input type="hidden" name="id" value="{$id}" />
<input type="hidden" name="type" value="{$type}" />
<input type="hidden" name="vid" value="{$vid}" />
<table class="rowTable" cellspacing="0">
<tbody>
<!--@if($site_count && $logged_info->is_admin == 'Y')-->
<tr>
<th><div>{$lang->virtual_site}</div></th>
<td>
<input type="text" name="site_keyword" value="{$site_keyword}" class="inputTypeText w200" /> <span class="button blue"><input type="submit" value="{$lang->cmd_search}" /></span>
<p>{$lang->about_search_virtual_site}</p>
</td>
</tr>
<!--@end-->
<tr>
<th><div>{$lang->module}</div></th>
<td>
<select name="selected_module">
<!--@foreach($mid_list as $key=>$val)-->
<option value="{$key}" <!--@if($selected_module == $key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select><span class="button blue"><input type="submit" value="{$lang->cmd_search}" /></span>
</td>
</tr>
</tbody>
</table>
<table class="rowTable" cellspacing="0">
<thead>
<tr>
<!--@if($module_category_exists)--><th><div>{$lang->module_category}</div></th><!--@end-->
<th><div>{$lang->mid}</div></th>
<th class="wide"><div>{$lang->browser_title}</div></th>
<th><div>{$type=='single'?$lang->cmd_select:$lang->cmd_insert}</div></th>
<tr>
</thead>
<tbody>
<!--@if($module_category_exists)-->
<!--@foreach($selected_mids as $key => $val)-->
<tr>
<td rowspan="{count($val)}">{$key}&nbsp;</td>
{@ $_idx =0; }
<!--@foreach($val as $k => $v)-->
<!--@if($_idx >0)--><tr><!--@end-->
{@ $browser_title = str_replace("'", "\\'", htmlspecialchars($v->browser_title)); }
<td>{$k}</td>
<td>{$v->browser_title}</td>
<td><a href="#" onclick="insertModule('{$id}', {$v->module_srl}, '{$k}', '{$browser_title}',{$type=='single'?'false':'true'}); return false;" class="button green"><span>{$type=='single'?$lang->cmd_select:$lang->cmd_insert}</span></a></td>
<!--@if($_idx <count($val))--></tr><!--@end-->
{@ $_idx ++; }
<!--@end-->
</tr>
<!--@end-->
<!--@else-->
<!--@foreach($selected_mids as $key => $val)-->
<!--@foreach($val as $k => $v)-->
<tr>
<td>{$k}</td>
<td>{$v->browser_title}</td>
<td><a href="#" onclick="insertModule('{$id}', {$v->module_srl}, '{$k}', '{str_replace("'","\\'",$v->browser_title)}',{$type=='single'?'false':'true'}); return false;" class="button green"><span>{$type=='single'?$lang->cmd_select:$lang->cmd_insert}</span></a></td>
</tr>
<!--@end-->
<!--@end-->
<!--@end-->
</tbody>
</table>
</form>
</div>
<h1 class="h1">{$lang->module_selector}</h1>
<form action="./" method="post">
<input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="dispModuleSelectList" />
<input type="hidden" name="id" value="{$id}" />
<input type="hidden" name="type" value="{$type}" />
<input type="hidden" name="vid" value="{$vid}" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tbody>
<!--@if($site_count && $logged_info->is_admin == 'Y')-->
<tr>
<th>{$lang->virtual_site}</th>
<td>
<input type="text" name="site_keyword" value="{$site_keyword}" /> <span class="button blue"><input type="submit" value="{$lang->cmd_search}" /></span>
<p>{$lang->about_search_virtual_site}</p>
</td>
</tr>
<!--@end-->
<tr>
<th>{$lang->module}</th>
<td>
<select name="selected_module">
<!--@foreach($mid_list as $key=>$val)-->
<option value="{$key}" <!--@if($selected_module == $key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select><span class="button blue"><input type="submit" value="{$lang->cmd_search}" /></span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<thead>
<tr>
<!--@if($module_category_exists)--><th>{$lang->module_category}</th><!--@end-->
<th>{$lang->mid}</th>
<th >{$lang->browser_title}</th>
<th>{$type=='single'?$lang->cmd_select:$lang->cmd_insert}</th>
<tr>
</thead>
<tbody>
<!--@if($module_category_exists)-->
<!--@foreach($selected_mids as $key => $val)-->
<tr>
<td rowspan="{count($val)}">{$key}&nbsp;</td>
{@ $_idx =0; }
<!--@foreach($val as $k => $v)-->
<!--@if($_idx >0)--><tr><!--@end-->
{@ $browser_title = str_replace("'", "\\'", htmlspecialchars($v->browser_title)); }
<td>{$k}</td>
<td>{$v->browser_title}</td>
<td><a href="#" onclick="insertModule('{$id}', {$v->module_srl}, '{$k}', '{$browser_title}',{$type=='single'?'false':'true'}); return false;" class="button green"><span>{$type=='single'?$lang->cmd_select:$lang->cmd_insert}</span></a></td>
<!--@if($_idx <count($val))--></tr><!--@end-->
{@ $_idx ++; }
<!--@end-->
</tr>
<!--@end-->
<!--@else-->
<!--@foreach($selected_mids as $key => $val)-->
<!--@foreach($val as $k => $v)-->
<tr>
<td>{$k}</td>
<td>{$v->browser_title}</td>
<td><a href="#" onclick="insertModule('{$id}', {$v->module_srl}, '{$k}', '{str_replace("'","\\'",$v->browser_title)}',{$type=='single'?'false':'true'}); return false;" class="button green"><span>{$type=='single'?$lang->cmd_select:$lang->cmd_insert}</span></a></td>
</tr>
<!--@end-->
<!--@end-->
<!--@end-->
</tbody>
</table>
</div>
</form>

View file

@ -48,21 +48,21 @@
<tr>
<th scope="row">{$lang->description}</th>
<td>
<textarea name="description" class="inputTypeTextArea fixWidth">{htmlspecialchars($module_info->description)}</textarea>
<textarea name="description">{htmlspecialchars($module_info->description)}</textarea>
<p>{$lang->about_description}</p>
</td>
</tr>
<tr>
<th scope="row">{$lang->header_text}</th>
<td>
<textarea name="header_text" class="inputTypeTextArea fixWidth">{htmlspecialchars($module_info->header_text)}</textarea>
<textarea name="header_text">{htmlspecialchars($module_info->header_text)}</textarea>
<p>{$lang->about_header_text}</p>
</td>
</tr>
<tr>
<th scope="row">{$lang->footer_text}</th>
<td>
<textarea name="footer_text" class="inputTypeTextArea fixWidth">{htmlspecialchars($module_info->footer_text)}</textarea>
<textarea name="footer_text">{htmlspecialchars($module_info->footer_text)}</textarea>
<p>{$lang->about_footer_text}</p>
</td>
</tr>

View file

@ -11,7 +11,7 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->skin}</th>
<td class="wide" >{$skin_info->title}</td>
<td >{$skin_info->title}</td>
</tr>
<tr>
<th scope="row">{$lang->skin_author}</th>
@ -54,7 +54,7 @@
<tr valign="top">
<th scope="row"><div>{$lang->colorset}</div></th>
<td class="wide">
<td >
<!--@foreach($skin_info->colorset as $key => $val)-->
<!--@if($val->screenshot)-->
{@ $_img_info = getImageSize($val->screenshot); $_height = $_img_info[1]+40; $_width = $_img_info[0]+20; $_talign = "center"; }
@ -87,13 +87,13 @@
<tr>
<th scope="row"><div>{$val->title}</div></th>
<td class="wide">
<td >
<!--@if($val->type=="text")-->
<input type="text" name="{$val->name}" value="{$val->value}" id="target{$val->name}" class="inputTypeText w400" />
<input type="text" name="{$val->name}" value="{$val->value}" id="target{$val->name}" />
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','target'.$val->name)}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<!--@elseif($val->type=="textarea")-->
<textarea name="{$val->name}" class="inputTypeTextArea w400" id="target{$val->name}">{$val->value}</textarea>
<textarea name="{$val->name}" id="target{$val->name}">{$val->value}</textarea>
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','target'.$val->name)}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<!--@elseif($val->type=="select")-->

View file

@ -25,10 +25,10 @@
<option value="">---------</option>
<option value="-1">{$lang->cmd_management}</option>
</select>
<input type="submit" name="go_button" id="go_button" value="GO" class="buttonTypeGo" />
<input type="submit" name="go_button" id="go_button" value="GO" />
</th>
<th scope="col" class="half_wide">{$lang->mid}</th>
<th scope="col" class="half_wide">{$lang->browser_title}</th>
<th scope="col">{$lang->mid}</th>
<th scope="col">{$lang->browser_title}</th>
<th scope="col">{$lang->regdate}</th>
<th scope="col">&nbsp;</th>
</tr>
@ -37,8 +37,8 @@
<tbody>
<!--@foreach($opage_list as $no => $val)-->
<tr class="row{$cycle_idx}">
<td class="number center">{$no}</td>
<td class="center"><input type="checkbox" name="cart" value="{$val->module_srl}" /></td>
<td>{$no}</td>
<td><input type="checkbox" name="cart" value="{$val->module_srl}" /></td>
<td>
<!--@if(!$val->module_category_srl)-->
{$lang->not_exists}

View file

@ -10,7 +10,7 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->module_name}</th>
<td class="wide">{$module_info->mid}</td>
<td >{$module_info->mid}</td>
</tr>
<tr>
<th scope="row">{$lang->module}</th>

View file

@ -9,15 +9,15 @@
<!--@if($logged_info->is_admin!='Y')-->
<input type="hidden" name="mid" value="{$module_info->mid}" />
<!--@else-->
<tr class="row2">
<tr>
<th scope="row">{$lang->mid}</th>
<td colspan="3">
<input type="text" name="mid" value="{$module_info->mid}" class="inputTypeText w200" />
<input type="text" name="mid" value="{$module_info->mid}" />
<p>{$lang->about_mid}</p>
</td>
</tr>
<!--@end-->
<tr class="row2">
<tr>
<th scope="row">{$lang->module_category}</th>
<td colspan="3">
<select name="module_category_srl">
@ -32,12 +32,12 @@
<tr>
<th scope="row">{$lang->browser_title}</th>
<td colspan="3">
<input type="text" name="browser_title" value="{$module_info->browser_title}" class="inputTypeText w400" id="browser_title"/>
<input type="text" name="browser_title" value="{$module_info->browser_title}" id="browser_title"/>
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','browser_title')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>{$lang->about_browser_title}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row">{$lang->layout}</th>
<td colspan="3">
<select name="layout_srl">
@ -71,21 +71,21 @@
<tr>
<th scope="row">{$lang->opage_caching_interval}</th>
<td colspan="3">
<input type="text" name="opage_caching_interval" value="{(int)$module_info->caching_interval}" class="inputTypeText w40" /> {$lang->unit_min}
<input type="text" name="opage_caching_interval" value="{(int)$module_info->caching_interval}" /> {$lang->unit_min}
<p>{$lang->about_opage_caching_interval}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row">{$lang->opage_path}</th>
<td colspan="3">
<input type="text" name="opage_path" value="{$module_info->path}" class="inputTypeText w400" />
<input type="text" name="opage_path" value="{$module_info->path}" />
<p>{$lang->about_opage_path}<b>{realpath("./")}</b></p>
</td>
</tr>
<tr class="row">
<th scope="row">{$lang->opage_mobile_path}</th>
<td colspan="3">
<input type="text" name="opage_mpath" value="{$module_info->mpath}" class="inputTypeText w400" />
<input type="text" name="opage_mpath" value="{$module_info->mpath}" />
<p>{$lang->about_opage_mobile_path}<b>{realpath("./")}</b></p>
</td>
</tr>

View file

@ -9,8 +9,8 @@
<input type="hidden" name="act" value="dispPageAdminContent" />
<fieldset>
{$lang->mid} <input type="text" name="s_mid" value="{htmlspecialchars($s_mid)}" class="inputTypeText" />
{$lang->browser_title} <input type="text" name="s_browser_title" value="{htmlspecialchars($s_browser_title)}" class="inputTypeText" />
{$lang->mid} <input type="text" name="s_mid" value="{htmlspecialchars($s_mid)}" />
{$lang->browser_title} <input type="text" name="s_browser_title" value="{htmlspecialchars($s_browser_title)}" />
<span class="button blue"><input type="submit" value="{$lang->cmd_search}" /></span>
<a href="{getUrl('s_mid','','s_browser_title','','page','')}" class="button black"><span>{$lang->cmd_cancel}</span></a>
</fieldset>
@ -37,11 +37,11 @@
<option value="">---------</option>
<option value="-1">{$lang->cmd_management}</option>
</select>
<input type="submit" name="go_button" id="go_button" value="GO" class="buttonTypeGo" />
<input type="submit" name="go_button" id="go_button" value="GO" />
</th>
<th scope="col">{$lang->page_type}</th>
<th scope="col" class="half_wide">{$lang->mid}</th>
<th scope="col" class="half_wide">{$lang->browser_title}</th>
<th scope="col">{$lang->mid}</th>
<th scope="col">{$lang->browser_title}</th>
<th scope="col">{$lang->regdate}</th>
<th scope="col">&nbsp;</th>
</tr>
@ -50,8 +50,8 @@
<tbody>
<!--@foreach($page_list as $no => $val)-->
<tr class="row{$cycle_idx}">
<td class="number center">{$no}</td>
<td class="center"><input type="checkbox" name="cart" value="{$val->module_srl}" /></td>
<td>{$no}</td>
<td><input type="checkbox" name="cart" value="{$val->module_srl}" /></td>
<td>
<!--@if(!$val->module_category_srl)-->
<!--@if($val->site_srl)-->

View file

@ -13,7 +13,7 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->module_name}</th>
<td class="wide">{$module_info->mid}</td>
<td >{$module_info->mid}</td>
</tr>
<tr>
<th scope="row">{$lang->module}</th>

View file

@ -10,20 +10,20 @@
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row"><div>{$lang->page_type}</div></th>
<th scope="row">{$lang->page_type}</th>
<td colspan="3">
{$lang->page_type_name[$module_info->page_type]}
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->mid}</div></th>
<th scope="row">{$lang->mid}</th>
<td colspan="3">
<input type="text" name="page_name" value="{$module_info->mid}" class="inputTypeText w200" />
<input type="text" name="page_name" value="{$module_info->mid}" />
<p>{$lang->about_mid}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->module_category}</div></th>
<th scope="row">{$lang->module_category}</th>
<td colspan="3">
<select name="module_category_srl">
<option value="0">{$lang->notuse}</option>
@ -35,15 +35,15 @@
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->browser_title}</div></th>
<th scope="row">{$lang->browser_title}</th>
<td colspan="3">
<input type="text" name="browser_title" value="{$module_info->browser_title}" class="inputTypeText w400" id="browser_title"/>
<input type="text" name="browser_title" value="{$module_info->browser_title}" id="browser_title"/>
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','browser_title')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>{$lang->about_browser_title}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->layout}</div></th>
<th scope="row">{$lang->layout}</th>
<td colspan="3">
<select name="layout_srl">
<option value="0">{$lang->notuse}</option>
@ -55,14 +55,14 @@
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->mobile_view}</div></th>
<th scope="row">{$lang->mobile_view}</th>
<td>
<input type="checkbox" name="use_mobile" value="Y" <!--@if($module_info->use_mobile == "Y")-->checked="checked"<!--@end--> />
<p>{$lang->about_mobile_view}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->mobile_layout}</div></th>
<th scope="row">{$lang->mobile_layout}</th>
<td>
<select name="mlayout_srl">
<option value="0">{$lang->notuse}</option>
@ -75,32 +75,32 @@
</tr>
<!--@if($module_info->page_type != 'ARTICLE')-->
<tr>
<th scope="row"><div>{$lang->page_caching_interval}</div></th>
<th scope="row">{$lang->page_caching_interval}</th>
<td colspan="3">
<input type="text" name="page_caching_interval" value="{(int)$module_info->page_caching_interval}" class="inputTypeText w40" /> {$lang->unit_min}
<input type="text" name="page_caching_interval" value="{(int)$module_info->page_caching_interval}" /> {$lang->unit_min}
<p>{$lang->about_page_caching_interval}</p>
</td>
</tr>
<!--@end-->
<!--@if($module_info->page_type == 'OUTSIDE')-->
<tr class="row2">
<th scope="row"><div>{$lang->opage_path}</div></th>
<tr>
<th scope="row">{$lang->opage_path}</th>
<td colspan="3">
<input type="text" name="path" value="{htmlspecialchars($module_info->path)}" class="inputTypeText w400" />
<input type="text" name="path" value="{htmlspecialchars($module_info->path)}" />
<p>{$lang->about_opage_path}<b>{realpath("./")}</b></p>
</td>
</tr>
<tr class="row">
<th scope="row"><div>{$lang->opage_mobile_path}</div></th>
<th scope="row">{$lang->opage_mobile_path}</th>
<td colspan="3">
<input type="text" name="mpath" value="{htmlspecialchars($module_info->mpath)}" class="inputTypeText w400" />
<input type="text" name="mpath" value="{htmlspecialchars($module_info->mpath)}" />
<p>{$lang->about_opage_mobile_path}<b>{realpath("./")}</b></p>
</td>
</tr>
<!--@end-->
<!--@if($module_info->page_type == 'ARTICLE')-->
<tr class="row2 optionnalData articleType">
<th scope="row"><div>{$lang->skin}</div></th>
<tr>
<th scope="row">{$lang->skin}</th>
<td>
<select name="skin">
<!--@foreach($skin_list as $key=>$val)-->
@ -111,7 +111,7 @@
</td>
</tr>
<tr class="optionnalData articleType">
<th scope="row"><div>{$lang->mobile_skin}</div></th>
<th scope="row">{$lang->mobile_skin}</th>
<td>
<select name="mskin">
<!--@foreach($mskin_list as $key=>$val)-->

View file

@ -11,12 +11,12 @@
<div class="table">
<table width="100%" border="1" cellspacing="0">
<!--@if($module_srl)-->
<tr class="row2">
<tr>
<th scope="row">{$lang->page_type}</th>
<td></td>
</tr>
<!--@else-->
<tr class="row2">
<tr>
<th scope="row">{$lang->page_type}</th>
<td colspan="3">
<select name="page_type">
@ -32,15 +32,15 @@
<!--@if($logged_info->is_admin!='Y')-->
<input type="hidden" name="page_name" value="{$module_info->mid}" />
<!--@else-->
<tr class="row2">
<tr>
<th scope="row">{$lang->mid}</th>
<td colspan="3">
<input type="text" name="page_name" value="{$module_info->mid}" class="inputTypeText w200" />
<input type="text" name="page_name" value="{$module_info->mid}" />
<p>{$lang->about_mid}</p>
</td>
</tr>
<!--@end-->
<tr class="row2">
<tr>
<th scope="row">{$lang->module_category}</th>
<td colspan="3">
<select name="module_category_srl">
@ -55,12 +55,12 @@
<tr>
<th scope="row">{$lang->browser_title}</th>
<td colspan="3">
<input type="text" name="browser_title" value="{$module_info->browser_title}" class="inputTypeText w400" id="browser_title"/>
<input type="text" name="browser_title" value="{$module_info->browser_title}" id="browser_title"/>
<a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','browser_title')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
<p>{$lang->about_browser_title}</p>
</td>
</tr>
<tr class="row2">
<tr>
<th scope="row">{$lang->layout}</th>
<td colspan="3">
<select name="layout_srl">
@ -94,11 +94,11 @@
<tr class="optionnalData widgetType outsideType">
<th scope="row">{$lang->page_caching_interval}</th>
<td colspan="3">
<input type="text" name="page_caching_interval" value="{(int)$module_info->caching_interval}" class="inputTypeText w40" /> {$lang->unit_min}
<input type="text" name="page_caching_interval" value="{(int)$module_info->caching_interval}" /> {$lang->unit_min}
<p>{$lang->about_page_caching_interval}</p>
</td>
</tr>
<tr class="row2 optionnalData articleType">
<tr>
<th scope="row">{$lang->skin}</th>
<td>
<select name="skin">
@ -120,17 +120,17 @@
<p>{$lang->about_skin}</p>
</td>
</tr>
<tr class="row2 optionnalData outsideType">
<tr>
<th scope="row">{$lang->opage_path}</th>
<td colspan="3">
<input type="text" name="path" value="{htmlspecialchars($module_info->path)}" class="inputTypeText w400" />
<input type="text" name="path" value="{htmlspecialchars($module_info->path)}" />
<p>{$lang->about_opage_path}<b>{realpath("./")}</b></p>
</td>
</tr>
<tr class="row optionnalData outsideType">
<th scope="row">{$lang->opage_mobile_path}</th>
<td colspan="3">
<input type="text" name="mpath" value="{htmlspecialchars($module_info->mpath)}" class="inputTypeText w400" />
<input type="text" name="mpath" value="{htmlspecialchars($module_info->mpath)}" />
<p>{$lang->about_opage_mobile_path}<b>{realpath("./")}</b></p>
</td>
</tr>

View file

@ -5,9 +5,7 @@
<load target="../../widget/tpl/js/widget.js" usecdn="true" />
<load target="../../widget/tpl/css/widget.css" usecdn="true" />
<div class="clear"></div>
<div id="zonePageContent">{$page_content}</div>
<div class="clear"></div>
<div class="adminLayer">
<form action="./" method="post" id="pageFo" onsubmit="return doSubmitMPageContent(this);">
<input type="hidden" name="mid" value="{$module_info->mid}" />

View file

@ -33,44 +33,44 @@
<h3 class="h3">{$lang->is_default}</h3>
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr class="row2">
<tr>
<td>{$lang->point_signup}</td>
<td>
<input type="text" class="inputTypeText w80" value="{$config->signup_point}" name="signup_point" /> {$config->point_name}
<input type="text" value="{$config->signup_point}" name="signup_point" /> {$config->point_name}
<p>{$lang->about_point_signup}</p>
</td>
</tr>
<tr>
<td>{$lang->cmd_login}</td>
<td><input type="text" class="inputTypeText w80" value="{$config->login_point}" name="login_point" /> {$config->point_name}</td>
<td><input type="text" value="{$config->login_point}" name="login_point" /> {$config->point_name}</td>
</tr>
<tr class="row2">
<tr>
<td>{$lang->point_insert_document}</td>
<td><input type="text" name="insert_document" value="{$config->insert_document}" class="inputTypeText w80" /> {$config->point_name}</td>
<td><input type="text" name="insert_document" value="{$config->insert_document}" /> {$config->point_name}</td>
</tr>
<tr>
<td>{$lang->point_insert_comment}</td>
<td><input type="text" name="insert_comment" value="{$config->insert_comment}" class="inputTypeText w80" /> {$config->point_name}</td>
<td><input type="text" name="insert_comment" value="{$config->insert_comment}" /> {$config->point_name}</td>
</tr>
<tr class="row2">
<tr>
<td>{$lang->point_upload_file}</td>
<td><input type="text" name="upload_file" value="{$config->upload_file}" class="inputTypeText w80" /> {$config->point_name}</td>
<td><input type="text" name="upload_file" value="{$config->upload_file}" /> {$config->point_name}</td>
</tr>
<tr>
<td>{$lang->point_download_file}</td>
<td><input type="text" name="download_file" value="{$config->download_file}" class="inputTypeText w80" /> {$config->point_name}</td>
<td><input type="text" name="download_file" value="{$config->download_file}" /> {$config->point_name}</td>
</tr>
<tr class="row2">
<tr>
<td>{$lang->point_read_document}</td>
<td><input type="text" name="read_document" value="{$config->read_document}" class="inputTypeText w80" /> {$config->point_name}</td>
<td><input type="text" name="read_document" value="{$config->read_document}" /> {$config->point_name}</td>
</tr>
<tr>
<td>{$lang->point_voted}</td>
<td><input type="text" name="voted" value="{$config->voted}" class="inputTypeText w80" /> {$config->point_name}</td>
<td><input type="text" name="voted" value="{$config->voted}" /> {$config->point_name}</td>
</tr>
<tr class="row2">
<tr>
<td>{$lang->point_blamed}</td>
<td><input type="text" name="blamed" value="{$config->blamed}" class="inputTypeText w80" /> {$config->point_name}</td>
<td><input type="text" name="blamed" value="{$config->blamed}" /> {$config->point_name}</td>
</tr>
</table>
</div>
@ -122,15 +122,15 @@
<table width="100%" border="1" cellspacing="0">
<thead>
<tr>
<th class="half_wide"><div>{$lang->group}<div></th>
<th class="half_wide"><div>{$lang->level}<div></th>
<th>{$lang->group}</th>
<th>{$lang->level}</th>
</tr>
</thead>
<tbody>
<!--@foreach($group_list as $key => $val)-->
<tr class="row{$cycle_idx}">
<td class="center">{$val->title}</td>
<td class="center"><input type="text" class="inputTypeText w80" value="{$config->point_group[$key]}" name="point_group_{$key}" /></td>
<td>{$val->title}</td>
<td><input type="text" value="{$config->point_group[$key]}" name="point_group_{$key}" /></td>
</tr>
<!--@end-->
<tr class="row{$cycle_idx}">

View file

@ -28,8 +28,8 @@
<td>
<form action="./" method="get">
<input type="hidden" name="member_srl" value="{$val->member_srl}" />
<input type="text" name="orgpoint" value="{$val->point}" class="inputTypeText w80" readonly />
<input type="text" id="point_{$val->member_srl}" name="point" class="inputTypeText w80" />
<input type="text" name="orgpoint" value="{$val->point}" readonly />
<input type="text" id="point_{$val->member_srl}" name="point" />
<span class="button"><input type="button" value="{$lang->cmd_update}" onclick="updatePoint({$val->member_srl})" /></span>
</form>
</td>

View file

@ -20,17 +20,17 @@
</thead>
<tbody>
<!--@foreach($mid_list as $key => $val)-->
<tr class="row2">
<tr>
<th colspan="7" scope="col"><strong>{$val->browser_title}</strong> ({$val->mid})</th>
</tr>
<tr>
<td><input type="text" name="insert_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_document']}" class="inputTypeText w40" /> {$config->point_name}</td>
<td><input type="text" name="insert_comment_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_comment']}" class="inputTypeText w40" /> {$config->point_name}</td>
<td><input type="text" name="upload_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['upload_file']}" class="inputTypeText w40" /> {$config->point_name}</td>
<td><input type="text" name="download_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['download_file']}" class="inputTypeText w40" /> {$config->point_name}</td>
<td><input type="text" name="read_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['read_document']}" class="inputTypeText w40" /> {$config->point_name}</td>
<td><input type="text" name="voted_{$val->module_srl}" value="{$module_config[$val->module_srl]['voted']}" class="inputTypeText w40" /> {$config->point_name}</td>
<td><input type="text" name="blamed_{$val->module_srl}" value="{$module_config[$val->module_srl]['blamed']}" class="inputTypeText w40" /> {$config->point_name}</td>
<td><input type="text" name="insert_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_document']}" /> {$config->point_name}</td>
<td><input type="text" name="insert_comment_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_comment']}" /> {$config->point_name}</td>
<td><input type="text" name="upload_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['upload_file']}" /> {$config->point_name}</td>
<td><input type="text" name="download_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['download_file']}" /> {$config->point_name}</td>
<td><input type="text" name="read_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['read_document']}" /> {$config->point_name}</td>
<td><input type="text" name="voted_{$val->module_srl}" value="{$module_config[$val->module_srl]['voted']}" /> {$config->point_name}</td>
<td><input type="text" name="blamed_{$val->module_srl}" value="{$module_config[$val->module_srl]['blamed']}" /> {$config->point_name}</td>
</tr>
<!--@end-->
</tbody>

View file

@ -9,31 +9,31 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th>{$lang->point_insert_document}</th>
<td class="wide"><input type="text" name="insert_document" value="{$module_config['insert_document']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
<td ><input type="text" name="insert_document" value="{$module_config['insert_document']}" /> {$module_config['point_name']}</td>
</tr>
<tr>
<th>{$lang->point_insert_comment}</th>
<td><input type="text" name="insert_comment" value="{$module_config['insert_comment']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
<td><input type="text" name="insert_comment" value="{$module_config['insert_comment']}" /> {$module_config['point_name']}</td>
</tr>
<tr>
<th>{$lang->point_upload_file}</th>
<td><input type="text" name="upload_file" value="{$module_config['upload_file']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
<td><input type="text" name="upload_file" value="{$module_config['upload_file']}" /> {$module_config['point_name']}</td>
</tr>
<tr>
<th>{$lang->point_download_file}</th>
<td><input type="text" name="download_file" value="{$module_config['download_file']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
<td><input type="text" name="download_file" value="{$module_config['download_file']}" /> {$module_config['point_name']}</td>
</tr>
<tr>
<th>{$lang->point_read_document}</th>
<td><input type="text" name="read_document" value="{$module_config['read_document']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
<td><input type="text" name="read_document" value="{$module_config['read_document']}" /> {$module_config['point_name']}</td>
</tr>
<tr>
<th>{$lang->point_voted}</th>
<td><input type="text" name="voted" value="{$module_config['voted']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
<td><input type="text" name="voted" value="{$module_config['voted']}" /> {$module_config['point_name']}</td>
</tr>
<tr>
<th>{$lang->point_blamed}</th>
<td><input type="text" name="blamed" value="{$module_config['blamed']}" class="inputTypeText w80" /> {$module_config['point_name']}</td>
<td><input type="text" name="blamed" value="{$module_config['blamed']}" /> {$module_config['point_name']}</td>
</tr>
</table>
</div>

View file

@ -1,26 +1,22 @@
<load target="css/poll.css" usecdn="true" />
<div id="popHeader" class="wide">
<h3 class="xeAdmin">{$lang->poll_stop_date} : {zdate($poll->stop_date, "Y-m-d H:i")} {$lang->poll_join_count} : {number_format($poll->poll_count)}</h3>
</div>
<div class="popBody">
<!--@foreach($poll->poll as $poll_srl_index => $val)-->
<div class="poll_detail_box">
<div class="title">{$val->title} ({$val->poll_count})</div>
<!--@foreach($val->item as $item_srl => $item)-->
{@$per = (int)(( $item->poll_count / $val->poll_count)*100) }
<h1 class="h1">{$lang->poll_stop_date} : {zdate($poll->stop_date, "Y-m-d H:i")} {$lang->poll_join_count} : {number_format($poll->poll_count)}</h1>
<!--@foreach($poll->poll as $poll_srl_index => $val)-->
<div class="poll_detail_box">
<div class="title">{$val->title} ({$val->poll_count})</div>
<!--@foreach($val->item as $item_srl => $item)-->
{@$per = (int)(( $item->poll_count / $val->poll_count)*100) }
<div class="text">
{$item_srl+1}. {$item->title} : {$item->poll_count} ({$per}%)
</div>
<div class="bar_box">
<!--@if($per)-->
<div class="bar" style="width:{$per}%;"><img src="./images/blank.gif" alt="bar" width="1" height="5" /></div>
<!--@else-->
<div class="bar" style="width:2px;"><img src="./images/blank.gif" alt="bar" width="1" height="5" /></div>
<!--@end-->
</div>
<!--@end-->
<div class="text">
{$item_srl+1}. {$item->title} : {$item->poll_count} ({$per}%)
</div>
<div class="bar_box">
<!--@if($per)-->
<div class="bar" style="width:{$per}%;"><img src="./images/blank.gif" alt="bar" width="1" height="5" /></div>
<!--@else-->
<div class="bar" style="width:2px;"><img src="./images/blank.gif" alt="bar" width="1" height="5" /></div>
<!--@end-->
</div>
<!--@end-->
</div>
<!--@end-->
</div>
<!--@end-->

View file

@ -9,7 +9,7 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->open_rss}</th>
<td class="wide">
<td >
<select name="open_rss" class="w200">
<!--@foreach($lang->open_rss_types as $key=>$val)-->
<option value="{$key}" <!--@if(!$rss_config->open_rss && $key=='N')-->selected="selected"<!--@elseif($rss_config->open_rss==$key)-->selected="selected"<!--@end-->>{$val}</option>
@ -19,7 +19,7 @@
</tr>
<tr>
<th scope="row">{$lang->open_feed_to_total}</th>
<td class="wide">
<td >
<select name="open_total_feed" class="w200">
<option value="N" <!--@if(!$rss_config->open_total_feed || $rss_config->open_total_feed == 'N')-->selected="selected"<!--@end-->>{$lang->use}</option>
<option value="T_N" <!--@if($rss_config->open_total_feed == 'T_N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
@ -28,15 +28,15 @@
</tr>
<tr>
<th scope="row">{$lang->description}</th>
<td class="wide">
<textarea name="feed_description" class="inputTypeTextArea">{$rss_config->feed_description}</textarea>
<td >
<textarea name="feed_description" >{$rss_config->feed_description}</textarea>
<p>{$lang->about_feed_description}</p>
</td>
</tr>
<tr>
<th scope="row">{$lang->feed_copyright}</th>
<td class="wide">
<input type="text" class="inputTypeText" name="feed_copyright" value="{htmlspecialchars($rss_config->feed_copyright)}" />
<td >
<input type="text" name="feed_copyright" value="{htmlspecialchars($rss_config->feed_copyright)}" />
<p>{$lang->about_feed_copyright}<br />{$lang->about_part_feed_copyright}</p>
</td>
</tr>

View file

@ -18,7 +18,7 @@
<tr>
<th scope="row"><label for="textfield1">{$lang->send_trackback_url}</label></th>
<td>
<input type="text" id="textfield1" name="trackback_url" value="" class="inputTypeText w300" />
<input type="text" id="textfield1" name="trackback_url" value="" />
<select name="charset">
<option value='UTF-8'>UTF-8</option>
<option value='EUC-KR'>EUC-KR</option>

View file

@ -8,7 +8,7 @@
<table width="100%" border="1" cellspacing="0">
<tr>
<th><label for="enable_trackback">{$lang->enable_trackback}</label></th>
<td class="wide"><input type="checkbox" name="enable_trackback" id="enable_trackback" value="Y" <!--@if($trackback_config->enable_trackback == "Y")-->checked="checked"<!--@end--> /></td>
<td ><input type="checkbox" name="enable_trackback" id="enable_trackback" value="Y" <!--@if($trackback_config->enable_trackback == "Y")-->checked="checked"<!--@end--> /></td>
</tr>
</table>
</div>

View file

@ -168,24 +168,8 @@ function getWidgetBoxCode(childObj, widget) {
}
var body = getWidgetContent(o);
return '<div widget="widgetBox" style="'+getStyle(childObj)+'" widget_padding_left="'+getPadding(childObj,'left')+'" widget_padding_right="'+getPadding(childObj,'right')+'" widget_padding_top="'+getPadding(childObj, 'top')+'" widget_padding_bottom="'+getPadding(childObj, 'bottom')+'" '+attrs+'><div><div>'+body+'<div class="clear"></div></div></div></div>';
return '<div widget="widgetBox" style="'+getStyle(childObj)+'" widget_padding_left="'+getPadding(childObj,'left')+'" widget_padding_right="'+getPadding(childObj,'right')+'" widget_padding_top="'+getPadding(childObj, 'top')+'" widget_padding_bottom="'+getPadding(childObj, 'bottom')+'" '+attrs+'><div><div>'+body+'</div></div></div>';
/*
var cobj = childObj.firstChild;
while(cobj) {
if(cobj.className == "widgetBorder" || cobj.className == "widgetBoxBorder") {
var c2obj = cobj.firstChild;
while(c2obj) {
if(c2obj.className == "nullWidget") {
var body = getWidgetContent(c2obj);
return '<div widget="widgetBox" style="'+getStyle(childObj)+'" widget_padding_left="'+getPadding(childObj,'left')+'" widget_padding_right="'+getPadding(childObj,'right')+'" widget_padding_top="'+getPadding(childObj, 'top')+'" widget_padding_bottom="'+getPadding(childObj, 'bottom')+'" '+attrs+'><div><div>'+body+'<div class="clear"></div></div></div></div>';
}
c2obj = c2obj.nextSibling;
}
}
cobj = cobj.nextSibling;
}
*/
}
@ -316,7 +300,6 @@ function doAddWidgetBox() {
'<div class="widgetBoxResizeLeft"></div>'+
'<div class="widgetBoxBorder">'+
'<div class="nullWidget" style="width:100%;height:100px;"></div>'+
'<div class="clear"></div>'+
'</div>'+
'</div>';
xInnerHtml(zonePageObj, xInnerHtml(zonePageObj)+tpl);

View file

@ -29,8 +29,6 @@
<a href="{getUrl('widgetstyle','none')}" class="widgetStyle"><img src="images/widgetstyle_none.gif" title="{$lang->notuse}" /></a>
<a loop="$widgetStyle_list => $key, $widgetStyle" cond="$widgetStyle->preview" href="{getUrl('widgetstyle',$widgetStyle->widgetStyle)}" class="widgetStyle <!--@if($widgetStyle->widgetStyle==$widgetstyle)-->selected<!--@end-->"><img src="{getUrl()}{$widgetStyle->preview}" title="{$widgetStyle->title}" /><span>{$widgetStyle->title}</span></a>
<div class="clear"></div>
<block cond="$widgetstyle_info">
<h3 class="h3">{$widgetstyle_info->title} ver {$widgetstyle_info->version}</h3>

View file

@ -489,7 +489,7 @@
$inner_style);
$widget_content_body = $body;
$widget_content_footer = sprintf('</div><div class="clear"></div>'.
$widget_content_footer = sprintf('</div>'.
'</div>'.
'<div class="widgetContent" style="display:none;width:1px;height:1px;overflow:hidden;">%s</div>'.
'</div>',base64_encode($body));
@ -538,7 +538,7 @@
$widget_padding_top, $widget_padding_right, $widget_padding_bottom, $widget_padding_left,
$widget, implode(' ',$attribute));
$widget_content_body = sprintf('<div style="%s">%s</div><div class="clear"></div>',$inner_style, $widget_content);
$widget_content_body = sprintf('<div style="%s">%s</div>',$inner_style, $widget_content);
$widget_content_footer = '</div></div>';