Minor fix. class="table" replace with class="x_table x_table-striped x_table-hover"

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11754 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-10-17 05:25:41 +00:00
parent cca3ea0668
commit 9e0fe3ba98
67 changed files with 2625 additions and 2778 deletions

View file

@ -54,7 +54,7 @@
<p>Nanum Web Fonts support 'English, Korean, Japanese' language.</p> <p>Nanum Web Fonts support 'English, Korean, Japanese' language.</p>
<h2 class="NG">Preview</h2> <h2 class="NG">Preview</h2>
<p class="resize">{font-size:<strong></strong>px} <button type="button" class="plus">Large</button> <button type="button" class="minus">Small</button> <button type="button" class="default">Default</button></p> <p class="resize">{font-size:<strong></strong>px} <button type="button" class="plus">Large</button> <button type="button" class="minus">Small</button> <button type="button" class="default">Default</button></p>
<table class="table"> <table>
<thead> <thead>
<tr> <tr>
<th scope="col">Font Name</th> <th scope="col">Font Name</th>

View file

@ -1,78 +1,74 @@
<h1 class="h1">{$lang->addon_maker}</h1> <h1 class="h1">{$lang->addon_maker}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row">{$lang->title}</th>
<th scope="row">{$lang->title}</th> <td>{$addon_info->title} ver. {$addon_info->version}</td>
<td>{$addon_info->title} ver. {$addon_info->version}</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->author}</th>
<th scope="row">{$lang->author}</th> <td>
<td> <!--@foreach($addon_info->author as $author)-->
<!--@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 />
{$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-->
<!--@endforeach--> </td>
</td> </tr>
</tr>
<!--@if($addon_info->homepage)--> <!--@if($addon_info->homepage)-->
<tr> <tr>
<th scope="row">{$lang->homepage}</th> <th scope="row">{$lang->homepage}</th>
<td><a href="{$addon_info->homepage}" onclick="window.open(this.href);return false;">{$addon_info->homepage}</a></td> <td><a href="{$addon_info->homepage}" onclick="window.open(this.href);return false;">{$addon_info->homepage}</a></td>
</tr><!--@end--> </tr><!--@end-->
<tr> <tr>
<th scope="row">{$lang->regdate}</th> <th scope="row">{$lang->regdate}</th>
<td>{zdate($addon_info->date, 'Y-m-d')}</td> <td>{zdate($addon_info->date, 'Y-m-d')}</td>
</tr> </tr>
<!--@if($addon_info->license || $addon_info->license_link)--> <!--@if($addon_info->license || $addon_info->license_link)-->
<tr> <tr>
<th scope="row">{$lang->addon_license}</th> <th scope="row">{$lang->addon_license}</th>
<td> <td>
{nl2br(trim($addon_info->license))} {nl2br(trim($addon_info->license))}
<!--@if($addon_info->license_link)--> <!--@if($addon_info->license_link)-->
<p><a href="{$addon_info->license_link}" onclick="window.close(); return false;">{$addon_info->license_link}</a></p> <p><a href="{$addon_info->license_link}" onclick="window.close(); return false;">{$addon_info->license_link}</a></p>
<!--@end--> <!--@end-->
</td> </td>
</tr><!--@end--> </tr><!--@end-->
<!--@if($addon_info->description)--> <!--@if($addon_info->description)-->
<tr> <tr>
<th scope="row">{$lang->description}</th> <th scope="row">{$lang->description}</th>
<td>{nl2br(trim($addon_info->description))}</td> <td>{nl2br(trim($addon_info->description))}</td>
</tr><!--@end--> </tr><!--@end-->
</table> </table>
</div>
<!--@if($addon_info->history)--> <!--@if($addon_info->history)-->
<h1 class="h1">{$lang->addon_history}</h1> <h1 class="h1">{$lang->addon_history}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="100" />
<col width="100" /> <col />
<col />
<!--@foreach($addon_info->history as $history)--> <!--@foreach($addon_info->history as $history)-->
<tr> <tr>
<th scope="row"> <th scope="row">
{$history->version}<br /> {$history->version}<br />
{$history->date} </th> {$history->date} </th>
<td> <td>
<!--@foreach($history->author as $author)--> <!--@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> <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--> <!--@endforeach-->
<!--@if($history->description)--> </ul>
<p>{nl2br(trim($history->description))}</p> <!--@endif-->
<!--@endif--> </td>
<!--@if($history->logs)--> </tr>
<ul> <!--@endforeach-->
<!--@foreach($history->logs as $log)--> </table>
<!--@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>
<!--@endif--> <!--@endif-->

View file

@ -4,47 +4,45 @@
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" /> <input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" /> <input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
<h3 class="h3">{$lang->comment}</h3> <h3 class="h3">{$lang->comment}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><label for="comment_count">{$lang->comment_count}</label></th>
<th scope="row"><label for="comment_count">{$lang->comment_count}</label></th> <td class="text">
<td class="text"> <input type="text" name="comment_count" id="comment_count" value="{$comment_config->comment_count}" style="width:30px" />
<input type="text" name="comment_count" id="comment_count" value="{$comment_config->comment_count}" style="width:30px" /> <span class="desc">{$lang->about_comment_count}</span>
<span class="desc">{$lang->about_comment_count}</span> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="use_vote_up">{$lang->cmd_vote}</label></th>
<th scope="row"><label for="use_vote_up">{$lang->cmd_vote}</label></th> <td class="text">
<td class="text"> <select name="use_vote_up" id="use_vote_up">
<select name="use_vote_up" id="use_vote_up"> <option value="Y" selected="selected"|cond="$comment_config->use_vote_up=='Y'">{$lang->use}</option>
<option value="Y" selected="selected"|cond="$comment_config->use_vote_up=='Y'">{$lang->use}</option> <option value="S" selected="selected"|cond="$comment_config->use_vote_up=='S'">{$lang->use_and_display}</option>
<option value="S" selected="selected"|cond="$comment_config->use_vote_up=='S'">{$lang->use_and_display}</option> <option value="N" selected="selected"|cond="$comment_config->use_vote_up=='N'">{$lang->notuse}</option>
<option value="N" selected="selected"|cond="$comment_config->use_vote_up=='N'">{$lang->notuse}</option> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="use_vote_down">{$lang->cmd_vote_down}</label></th>
<th scope="row"><label for="use_vote_down">{$lang->cmd_vote_down}</label></th> <td class="text">
<td class="text"> <select name="use_vote_down" id="use_vote_down">
<select name="use_vote_down" id="use_vote_down"> <option value="Y" selected="selected"|cond="$comment_config->use_vote_down=='Y'">{$lang->use}</option>
<option value="Y" selected="selected"|cond="$comment_config->use_vote_down=='Y'">{$lang->use}</option> <option value="S" selected="selected"|cond="$comment_config->use_vote_down=='S'">{$lang->use_and_display}</option>
<option value="S" selected="selected"|cond="$comment_config->use_vote_down=='S'">{$lang->use_and_display}</option> <option value="N" selected="selected"|cond="$comment_config->use_vote_down=='N'">{$lang->notuse}</option>
<option value="N" selected="selected"|cond="$comment_config->use_vote_down=='N'">{$lang->notuse}</option> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="use_comment_validation">{$lang->cmd_comment_validation}</label></th>
<th scope="row"><label for="use_comment_validation">{$lang->cmd_comment_validation}</label></th> <td>
<td> <select name="use_comment_validation">
<select name="use_comment_validation"> <option value="N" selected="selected"|cond="$comment_config->use_comment_validation=='N'">{$lang->notuse}</option>
<option value="N" selected="selected"|cond="$comment_config->use_comment_validation=='N'">{$lang->notuse}</option> <option value="Y" selected="selected"|cond="$comment_config->use_comment_validation=='Y'">{$lang->use}</option>
<option value="Y" selected="selected"|cond="$comment_config->use_comment_validation=='Y'">{$lang->use}</option> </select>
</select> <p>{$lang->about_comment_validation}</p>
<p>{$lang->about_comment_validation}</p> </td>
</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span>
</div> </div>

View file

@ -11,33 +11,31 @@
<input type="hidden" name="is_trash" value="false" /> <input type="hidden" name="is_trash" value="false" />
<!-- 목록 --> <!-- 목록 -->
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" class="x_table x_table-striped x_table-hover"> <caption>{$lang->all} {number_format($total_count)}, {$lang->page} {number_format($page)}/{number_format($total_page)}</caption>
<caption>{$lang->all} {number_format($total_count)}, {$lang->page} {number_format($page)}/{number_format($total_page)}</caption> <thead>
<thead> <tr>
<tr> <th scope="col"><input type="checkbox" onclick="XE.checkboxToggleAll(); return false;" /></th>
<th scope="col"><input type="checkbox" onclick="XE.checkboxToggleAll(); return false;" /></th> <th scope="col">{$lang->comment}</th>
<th scope="col">{$lang->comment}</th> <th scope="col">{$lang->user_name}</th>
<th scope="col">{$lang->user_name}</th> <th scope="col">{$lang->date}</th>
<th scope="col">{$lang->date}</th> <th scope="col">{$lang->cmd_declare}</th>
<th scope="col">{$lang->cmd_declare}</th> <th scope="col">{$lang->ipaddress}</th>
<th scope="col">{$lang->ipaddress}</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> <!--@foreach($comment_list as $no => $oComment)-->
<!--@foreach($comment_list as $no => $oComment)--> <tr>
<tr> <td><input type="checkbox" name="cart" value="{$oComment->get('comment_srl')}" /></td>
<td><input type="checkbox" name="cart" value="{$oComment->get('comment_srl')}" /></td> <td><a href="{getUrl('','document_srl',$oComment->get('document_srl'))}#comment_{$oComment->get('comment_srl')}" onclick="window.open(this.href);return false;">{$oComment->getSummary(100)}</a></td>
<td><a href="{getUrl('','document_srl',$oComment->get('document_srl'))}#comment_{$oComment->get('comment_srl')}" onclick="window.open(this.href);return false;">{$oComment->getSummary(100)}</a></td> <td><span class="member_{$oComment->getMemberSrl()}">{$oComment->getNickName()}</span></td>
<td><span class="member_{$oComment->getMemberSrl()}">{$oComment->getNickName()}</span></td> <td>{$oComment->getRegdate("Y-m-d")}</td>
<td>{$oComment->getRegdate("Y-m-d")}</td> <td><strong>{$oComment->get('declared_count')}</strong></td>
<td><strong>{$oComment->get('declared_count')}</strong></td> <td>{$oComment->get('ipaddress')}</td>
<td>{$oComment->get('ipaddress')}</td> </tr>
</tr> <!--@end-->
<!--@end--> </tbody>
</tbody> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<div class="x_btn-group"> <div class="x_btn-group">
<button class="x_btn" type="button" onclick="doCancelDeclare();">{$lang->cmd_cancel_declare}</button> <button class="x_btn" type="button" onclick="doCancelDeclare();">{$lang->cmd_cancel_declare}</button>

View file

@ -9,24 +9,22 @@
<input type="hidden" name="module" value="communication" /> <input type="hidden" name="module" value="communication" />
<input type="hidden" name="act" value="procCommunicationAddFriend" /> <input type="hidden" name="act" value="procCommunicationAddFriend" />
<input type="hidden" name="target_srl" value="{$target_info->member_srl}" /> <input type="hidden" name="target_srl" value="{$target_info->member_srl}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row">{$lang->nick_name}</th>
<th scope="row">{$lang->nick_name}</th> <td>{$target_info->nick_name}</td>
<td>{$target_info->nick_name}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="friend_group_srl">{$lang->friend_group}</label></th>
<th scope="row"><label for="friend_group_srl">{$lang->friend_group}</label></th> <td>
<td> <select name="friend_group_srl" id="friend_group_srl">
<select name="friend_group_srl" id="friend_group_srl"> <option value="">{$lang->default_friend_group}</option>
<option value="">{$lang->default_friend_group}</option> <option loop="$friend_group_list => $key,$val" value="{$val->friend_group_srl}">{$val->title}</option>
<option loop="$friend_group_list => $key,$val" value="{$val->friend_group_srl}">{$val->title}</option> </select>
</select> <a href="{getUrl('act','dispCommunicationAddFriendGroup')}" onclick="popopen(this.href);return false;">{$lang->cmd_add_friend_group}</a>
<a href="{getUrl('act','dispCommunicationAddFriendGroup')}" onclick="popopen(this.href);return false;">{$lang->cmd_add_friend_group}</a> </td>
</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_add_friend}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_add_friend}" /></span>
</div> </div>

View file

@ -30,7 +30,7 @@
</div> </div>
<div class="table even"> <div class="table even">
<table width="100%" border="1" cellspacing="0"> <table class="x_table x_table-striped x_table-hover">
<caption>Total: {$total_count}</caption> <caption>Total: {$total_count}</caption>
<thead> <thead>
<tr> <tr>

View file

@ -19,7 +19,7 @@
</form> </form>
</div> </div>
<div class="table even" cond="$message"> <div class="table even" cond="$message">
<table width="100%" border="1" cellspacing="0"> <table class="x_table x_table-striped x_table-hover">
<tr> <tr>
<th class="title">{$message->title}</th> <th class="title">{$message->title}</th>
</tr> </tr>
@ -47,7 +47,7 @@
<input type="hidden" name="act" value="procCommunicationDeleteMessages" /> <input type="hidden" name="act" value="procCommunicationDeleteMessages" />
<input type="hidden" name="message_type" value="{$message_type}" /> <input type="hidden" name="message_type" value="{$message_type}" />
<div class="table even"> <div class="table even">
<table width="100%" border="1" cellspacing="0"> <table class="x_table x_table-striped x_table-hover">
<thead> <thead>
<tr> <tr>
<th scope="col" class="title">{$lang->title}</th> <th scope="col" class="title">{$lang->title}</th>

View file

@ -1,23 +1,21 @@
<load target="js/communication.js" /> <load target="js/communication.js" />
<!--@if($message)--> <!--@if($message)-->
<h1 class="h1">{$lang->message_received}</h1> <h1 class="h1">{$lang->message_received}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <!--@if($message->member_srl != $logged_info->member_srl)-->
<!--@if($message->member_srl != $logged_info->member_srl)--> <tr>
<tr> <th scope="row">{$lang->sender}</th>
<th scope="row">{$lang->sender}</th> <td><a href="#popup_menu_area" class="member_{$message->member_srl}">{$message->nick_name}</a></td>
<td><a href="#popup_menu_area" class="member_{$message->member_srl}">{$message->nick_name}</a></td> </tr>
</tr> <!--@end-->
<!--@end--> <tr>
<tr> <th scope="row">{$lang->title}</th>
<th scope="row">{$lang->title}</th> <td class="title">{htmlspecialchars($message->title)}</td>
<td class="title">{htmlspecialchars($message->title)}</td> </tr>
</tr> <tr>
<tr> <td colspan="2" class="xe_content">{$message->content}</td>
<td colspan="2" class="xe_content">{$message->content}</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="etc"><button type="button" onclick="location.href=location.href;return false;">{$lang->cmd_next}</button></span> <span class="etc"><button type="button" onclick="location.href=location.href;return false;">{$lang->cmd_next}</button></span>
<!--@if($message->member_srl != $logged_info->member_srl)--> <!--@if($message->member_srl != $logged_info->member_srl)-->

View file

@ -8,23 +8,21 @@
<input type="hidden" name="act" value="procCommunicationSendMessage" /> <input type="hidden" name="act" value="procCommunicationSendMessage" />
<input type="hidden" name="content" value="{htmlspecialchars($source_message->content)}" /> <input type="hidden" name="content" value="{htmlspecialchars($source_message->content)}" />
<input type="hidden" name="receiver_srl" value="{$receiver_info->member_srl}" /> <input type="hidden" name="receiver_srl" value="{$receiver_info->member_srl}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><label for="textfield1">{$lang->receiver}</label></th>
<th scope="row"><label for="textfield1">{$lang->receiver}</label></th> <td>{$receiver_info->nick_name}</td>
<td>{$receiver_info->nick_name}</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->title}</th>
<th scope="row">{$lang->title}</th> <td><input type="text" name="title" id="message_title" value="{$source_message->title}"/></td>
<td><input type="text" name="title" id="message_title" value="{$source_message->title}"/></td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->cmd_option}</th>
<th scope="row">{$lang->cmd_option}</th> <td><input type="checkbox" value="Y" name="send_mail" /> {$lang->cmd_send_mail}</td>
<td><input type="checkbox" value="Y" name="send_mail" /> {$lang->cmd_send_mail}</td> </tr>
</tr> </table>
</table> {$editor}
{$editor}
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_send_message}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_send_message}" /></span>
</div> </div>

View file

@ -15,56 +15,50 @@
<input type="hidden" name="module" value="{$module}" /> <input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="act" value="{$act}" /> <input type="hidden" name="act" value="{$act}" />
<input type="hidden" name="selected_date" id="selected_date" value="{zDate('Ymd',$selected_date)}" /> <input type="hidden" name="selected_date" id="selected_date" value="{zDate('Ymd',$selected_date)}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th scope="row">{$lang->total_counter}</th>
<th scope="row">{$lang->total_counter}</th> <th scope="row"> <span id="str_selected_date">{zdate($selected_date, "Y-m-d")}</span>
<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')}" />
<input type="hidden" class="inputDate" value="{zdate($selected_date,'Y-m-d')}" />
<script> <script>
(function($){ (function($){
$(function(){ $(function(){
var option = { var option = {
changeMonth: true changeMonth: true
,changeYear: true ,changeYear: true
,gotoCurrent: false ,gotoCurrent: false
,dateFormat:'yy-mm-dd' ,dateFormat:'yy-mm-dd'
,yearRange:'-100:+10' ,yearRange:'-100:+10'
,showOn:"button" ,showOn:"button"
,buttonImage:"./modules/counter/tpl/images/buttonCalendar.gif" ,buttonImage:"./modules/counter/tpl/images/buttonCalendar.gif"
,buttonImageOnly:true ,buttonImageOnly:true
,mandatory:true ,mandatory:true
,onSelect:function(){ ,onSelect:function(){
$("#str_selected_date").html(this.value); $("#str_selected_date").html(this.value);
$("#selected_date").val(this.value.replace(/-/g,'')); $("#selected_date").val(this.value.replace(/-/g,''));
moveDate(); moveDate();
} }
}; };
$.extend(option,$.datepicker.regional['{$lang_type}']); $.extend(option,$.datepicker.regional['{$lang_type}']);
$(".inputDate").datepicker(option); $(".inputDate").datepicker(option);
}); });
})(jQuery); })(jQuery);
</script> </th> </script> </th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <tr>
<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($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> <td>Visitor : <strong>{number_format($selected_day_counter->unique_visitor)}</strong> &nbsp;/&nbsp; Pageview : <strong>{number_format($selected_day_counter->pageview)}</strong></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
</form> </form>
<div class="cnb"> <p>
<ul> <a loop="$lang->cmd_select_counter_type => $key, $val" href="{getUrl('type',$key)}" class="active"|cond="$type==$key || (!$type && $key == "hour")">{$val}</a> <i>|</i>
<!--@foreach($lang->cmd_select_counter_type as $key => $val)--> </p>
<li <!--@if($type==$key || (!$type && $key == "hour"))-->class="active"<!--@end-->><a href="{getUrl('type',$key)}">{$val}</a></li>
<!--@end-->
</ul>
</div>
<!-- 일자를 옮기는 form --> <!-- 일자를 옮기는 form -->
@ -76,49 +70,47 @@
<!-- unique visitor 그래프 --> <!-- unique visitor 그래프 -->
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <!--@foreach($detail_status->list as $key => $val)-->
<!--@foreach($detail_status->list as $key => $val)--> <!--@if($detail_status->sum>0)-->
<!--@if($detail_status->sum>0)--> {@$percent = sprintf("%0.2f", $val / $detail_status->sum * 100 )}
{@$percent = sprintf("%0.2f", $val / $detail_status->sum * 100 )} {@$img_width = sprintf("%d", $val / $detail_status->max * 100 )}
{@$img_width = sprintf("%d", $val / $detail_status->max * 100 )} <!--@else-->
<!--@else--> {@$percent = 0}
{@$percent = 0} {@$img_width = 1}
{@$img_width = 1}
<!--@end-->
<tr>
<!--@if(Context::getLangType()=='en')-->
<th scope="row"> <!--// 시간대별 -->
<!--@if($type == 'year')-->
<em>{$key}</em>
<!--@elseif($type == 'month')-->
<em>{$key}</em>
<!--@elseif($type == 'day')-->
<em>{$key}</em> {$lang->unit_day}
<!--@else-->
<em>{$key}</em>
<!--@end--> </th>
<!--@else-->
<th scope="row"> <!--// 시간대별 -->
<!--@if($type == 'year')-->
<em>{$key}</em> {$lang->unit_year}
<!--@elseif($type == 'month')-->
<em>{$key}</em> {$lang->unit_month}
<!--@elseif($type == 'day')-->
<em>{$key}</em> {$lang->unit_day}
<!--@else-->
<em>{$key}</em> {$lang->unit_hour}
<!--@end--> </th>
<!--@end-->
{@ $img_width = (int)$percent; $img_width = $img_width?$img_width.'%':'3px'; }
<td >
<div class="barContainer">
<span class="graphHr" style="width:{$img_width}">
<span>{number_format($val)}({$percent}%)</span>
</span>
</div>
</td>
</tr>
<!--@end--> <!--@end-->
</table> <tr>
</div> <!--@if(Context::getLangType()=='en')-->
<th scope="row"> <!--// 시간대별 -->
<!--@if($type == 'year')-->
<em>{$key}</em>
<!--@elseif($type == 'month')-->
<em>{$key}</em>
<!--@elseif($type == 'day')-->
<em>{$key}</em> {$lang->unit_day}
<!--@else-->
<em>{$key}</em>
<!--@end--> </th>
<!--@else-->
<th scope="row"> <!--// 시간대별 -->
<!--@if($type == 'year')-->
<em>{$key}</em> {$lang->unit_year}
<!--@elseif($type == 'month')-->
<em>{$key}</em> {$lang->unit_month}
<!--@elseif($type == 'day')-->
<em>{$key}</em> {$lang->unit_day}
<!--@else-->
<em>{$key}</em> {$lang->unit_hour}
<!--@end--> </th>
<!--@end-->
{@ $img_width = (int)$percent; $img_width = $img_width?$img_width.'%':'3px'; }
<td >
<div class="barContainer">
<span class="graphHr" style="width:{$img_width}">
<span>{number_format($val)}({$percent}%)</span>
</span>
</div>
</td>
</tr>
<!--@end-->
</table>

View file

@ -8,41 +8,39 @@
<!--@if(count($document_list)==0)--> <!--@if(count($document_list)==0)-->
{$lang->msg_not_selected_document} {$lang->msg_not_selected_document}
<!--@else--> <!--@else-->
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><label for="textfield1">{$lang->checked_count} ({count($document_list)})</label></th>
<th scope="row"><label for="textfield1">{$lang->checked_count} ({count($document_list)})</label></th> <td>
<td> <input type="checkbox" onclick="XE.checkboxToggleAll()" checked="checked"/> {$lang->cmd_select}
<input type="checkbox" onclick="XE.checkboxToggleAll()" checked="checked"/> {$lang->cmd_select} <ul class="document_list_box">
<ul class="document_list_box"> <!--@foreach($document_list as $key => $document)-->
<!--@foreach($document_list as $key => $document)--> <li class="document_list"><input type="checkbox" checked="checked" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this);"/> <address>{$document->getNickName()}</address> <span class="document_title">{$document->getTitle()}</span></li>
<li class="document_list"><input type="checkbox" checked="checked" name="cart" value="{$document->document_srl}" onclick="doAddDocumentCart(this);"/> <address>{$document->getNickName()}</address> <span class="document_title">{$document->getTitle()}</span></li> <!--@end-->
<!--@end--> </ul>
</ul> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->move_target_module}</th>
<th scope="row">{$lang->move_target_module}</th> <td>
<td> <input type="hidden" name="target_module" id="target_module" value="{$module_srl}" />
<input type="hidden" name="target_module" id="target_module" value="{$module_srl}" /> <input type="text" name="_target_module" id="_target_module" value="{$mid} ({$browser_title})" readonly="readonly" /><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_select}</span></a>
<input type="text" name="_target_module" id="_target_module" value="{$mid} ({$browser_title})" readonly="readonly" /><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_select}</span></a> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->category}</th>
<th scope="row">{$lang->category}</th> <td>
<td> <select id="target_category" name="target_category">
<select id="target_category" name="target_category"> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->cmd_send_message}</th>
<th scope="row">{$lang->cmd_send_message}</th> <td>
<td> <textarea name="message_content" rows="8" cols="42"></textarea>
<textarea name="message_content" rows="8" cols="42"></textarea> </td>
</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<button type="button" onclick="doManageDocument('trash');">{$lang->cmd_trash}</button> <button type="button" onclick="doManageDocument('trash');">{$lang->cmd_trash}</button>

View file

@ -18,38 +18,36 @@
<input type="hidden" name="module_srl" value="{$oDocument->get('module_srl')}" /> <input type="hidden" name="module_srl" value="{$oDocument->get('module_srl')}" />
<h3 class="h3">{$lang->alias}</h3> <h3 class="h3">{$lang->alias}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->title}</th>
<th scope="col">{$lang->title}</th> <th scope="col">{$lang->alias}</th>
<th scope="col">{$lang->alias}</th> <th scope="col"></th>
<th scope="col"></th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> <tr>
<tr> <td rowspan="{count($aliases)+1}">{$oDocument->getTitle()}</td>
<td rowspan="{count($aliases)+1}">{$oDocument->getTitle()}</td> {@ $bFirst = true; }
{@ $bFirst = true; } <!--@foreach($aliases as $val)-->
<!--@foreach($aliases as $val)--> <!--@if(!$bFirst)-->
<!--@if(!$bFirst)--> <tr>
<tr> {@ $bFirst = false; }
{@ $bFirst = false; } <!--@end-->
<!--@end--> <td>{$val->alias_title}</td>
<td>{$val->alias_title}</td> <td><button type="button" onclick="deleteByFilter('{$val->alias_srl}', delete_alias);">Delete</button>
<td><button type="button" onclick="deleteByFilter('{$val->alias_srl}', delete_alias);">Delete</button> </td>
</td> </tr>
</tr> <!--@end-->
<!--@end--> <!--@if(!$bFirst)-->
<!--@if(!$bFirst)--> <tr>
<tr> <!--@end-->
<!--@end--> <td>
<td> <input type="text" name="alias_title" />
<input type="text" name="alias_title" /> </td>
</td> <td><span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span></td>
<td><span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span></td> </tr>
</tr> </tbody>
</tbody> </table>
</table>
</div>
</form> </form>

View file

@ -3,8 +3,7 @@
<form action="./" method="post"> <form action="./" method="post">
<input type="hidden" name="module" value="document" /> <input type="hidden" name="module" value="document" />
<input type="hidden" name="act" value="procDocumentAdminInsertConfig" /> <input type="hidden" name="act" value="procDocumentAdminInsertConfig" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0">
<tr> <tr>
<th scope="col">{$lang->thumbnail_type}</th> <th scope="col">{$lang->thumbnail_type}</th>
</tr> </tr>
@ -14,8 +13,7 @@
<input type="radio" name="thumbnail_type" value="ratio" <!--@if($config->thumbnail_type == 'ratio')-->checked="checked"<!--@end-->/> {$lang->thumbnail_ratio} <input type="radio" name="thumbnail_type" value="ratio" <!--@if($config->thumbnail_type == 'ratio')-->checked="checked"<!--@end-->/> {$lang->thumbnail_ratio}
</td> </td>
</tr> </tr>
</table> </table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
<span class="btn"><input type="button" value="{$lang->cmd_delete_all_thumbnail}" onclick="doDeleteAllThumbnail(); return false;"/></span> <span class="btn"><input type="button" value="{$lang->cmd_delete_all_thumbnail}" onclick="doDeleteAllThumbnail(); return false;"/></span>

View file

@ -5,41 +5,39 @@
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" /> <input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" /> <input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
<h3 class="h3">{$lang->document}</h3> <h3 class="h3">{$lang->document}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><label for="use_history">{$lang->history}</label></th>
<th scope="row"><label for="use_history">{$lang->history}</label></th> <td class="text">
<td class="text"> <select name="use_history" id="use_history">
<select name="use_history" id="use_history"> <option value="N" selected="selected"|cond="$document_config->use_history=='N'">{$lang->notuse}</option>
<option value="N" selected="selected"|cond="$document_config->use_history=='N'">{$lang->notuse}</option> <option value="Y" selected="selected"|cond="$document_config->use_history=='Y'">{$lang->use}</option>
<option value="Y" selected="selected"|cond="$document_config->use_history=='Y'">{$lang->use}</option> <option value="Trace" selected="selected"|cond="$document_config->use_history=='Trace'">{$lang->trace_only}</option>
<option value="Trace" selected="selected"|cond="$document_config->use_history=='Trace'">{$lang->trace_only}</option> </select>
</select> <span class="desc">{$lang->about_use_history}</span>
<span class="desc">{$lang->about_use_history}</span> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="use_vote_up">{$lang->cmd_vote}</label></th>
<th scope="row"><label for="use_vote_up">{$lang->cmd_vote}</label></th> <td class="text">
<td class="text"> <select name="use_vote_up" id="use_vote_up">
<select name="use_vote_up" id="use_vote_up"> <option value="Y" selected="selected"|cond="$document_config->use_vote_up=='Y'">{$lang->use}</option>
<option value="Y" selected="selected"|cond="$document_config->use_vote_up=='Y'">{$lang->use}</option> <option value="S" selected="selected"|cond="$document_config->use_vote_up=='S'">{$lang->use_and_display}</option>
<option value="S" selected="selected"|cond="$document_config->use_vote_up=='S'">{$lang->use_and_display}</option> <option value="N" selected="selected"|cond="$document_config->use_vote_up=='N'">{$lang->notuse}</option>
<option value="N" selected="selected"|cond="$document_config->use_vote_up=='N'">{$lang->notuse}</option> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="use_vote_down">{$lang->cmd_vote_down}</label></th>
<th scope="row"><label for="use_vote_down">{$lang->cmd_vote_down}</label></th> <td class="text">
<td class="text"> <select name="use_vote_down" id="use_vote_down">
<select name="use_vote_down" id="use_vote_down"> <option value="Y" selected="selected"|cond="$document_config->use_vote_down=='Y'">{$lang->use}</option>
<option value="Y" selected="selected"|cond="$document_config->use_vote_down=='Y'">{$lang->use}</option> <option value="S" selected="selected"|cond="$document_config->use_vote_down=='S'">{$lang->use_and_display}</option>
<option value="S" selected="selected"|cond="$document_config->use_vote_down=='S'">{$lang->use_and_display}</option> <option value="N" selected="selected"|cond="$document_config->use_vote_down=='N'">{$lang->notuse}</option>
<option value="N" selected="selected"|cond="$document_config->use_vote_down=='N'">{$lang->notuse}</option> </select>
</select> </td>
</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span>
</div> </div>

View file

@ -16,45 +16,43 @@
</div> </div>
<!-- 목록 --> <!-- 목록 -->
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->no}</th>
<th scope="col">{$lang->no}</th> <th scope="col" >{$lang->document}</th>
<th scope="col" >{$lang->document}</th> <th scope="col">{$lang->trash_nick_name}</th>
<th scope="col">{$lang->trash_nick_name}</th> <th scope="col">{$lang->trash_date}</th>
<th scope="col">{$lang->trash_date}</th> <th scope="col">{$lang->ipaddress}</th>
<th scope="col">{$lang->ipaddress}</th> <th scope="col">{$lang->trash_description}</th>
<th scope="col">{$lang->trash_description}</th> <th scope="col">{$lang->cmd_restore}</th>
<th scope="col">{$lang->cmd_restore}</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> <!--@foreach($document_list as $no => $oDocument)-->
<!--@foreach($document_list as $no => $oDocument)--> <tr>
<tr> <td>{$no}</td>
<td>{$no}</td> <td>
<td> {$oDocument->getTitle()}
{$oDocument->getTitle()}
<!--@if($oDocument->getCommentCount())-->
<!--@if($oDocument->getCommentCount())--> [{$oDocument->getCommentCount()}]
[{$oDocument->getCommentCount()}] <!--@end-->
<!--@end-->
<!--@if($oDocument->getTrackbackCount())-->
<!--@if($oDocument->getTrackbackCount())--> [{$oDocument->getTrackbackCount()}]
[{$oDocument->getTrackbackCount()}] <!--@end-->
<!--@end--> </td>
</td> <td><a href="#popup_menu_area" class="member_{$oDocument->get('trash_member_srl')}">{htmlspecialchars($oDocument->get('trash_nick_name'))}</a></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>{zdate($oDocument->get('trash_date'), "Y-m-d H:i:s")}</td> <td>{$oDocument->get('ipaddress')}</td>
<td>{$oDocument->get('ipaddress')}</td> <td >{$oDocument->get('trash_description')}</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>
<td><button type="button" onclick="executeFilterByTargetSrl('restore_form', {$oDocument->get('trash_srl')}, restore_trash);">{$lang->cmd_restore}</button></td> </tr>
</tr> <!--@end-->
<!--@end--> </tbody>
</tbody> </table>
</table>
</div>
</form> </form>

View file

@ -18,50 +18,48 @@
<input type="hidden" name="success_return_url" value="{getUrl('type', '')}" /> <input type="hidden" name="success_return_url" value="{getUrl('type', '')}" />
<h3 class="h3">{$lang->extra_vars} {$selected_var_idx}</h3> <h3 class="h3">{$lang->extra_vars} {$selected_var_idx}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th>{$lang->eid}</th>
<th>{$lang->eid}</th> <td >
<td > <input type="text" name="eid" value="{$selected_var->eid}" id="eid" /><p>{$lang->about_extra_vars_eid_value}</p>
<input type="text" name="eid" value="{$selected_var->eid}" id="eid" /><p>{$lang->about_extra_vars_eid_value}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th>{$lang->column_name}</th>
<th>{$lang->column_name}</th> <td >
<td > <input type="text" name="name" value="{htmlspecialchars($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>
<input type="text" name="name" value="{htmlspecialchars($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>
</td> </tr>
</tr> <tr>
<tr> <th>{$lang->column_type}</th>
<th>{$lang->column_type}</th> <td>
<td> <select name="type">
<select name="type"> <!--@foreach($lang->column_type_list as $k => $v)-->
<!--@foreach($lang->column_type_list as $k => $v)--> <!--@if($key != 'kr_zip')-->
<!--@if($key != 'kr_zip')--> <option value="{$k}" <!--@if($selected_var->type==$k)-->selected="selected"<!--@end-->>{$lang->column_type_list[$k]}</option>
<option value="{$k}" <!--@if($selected_var->type==$k)-->selected="selected"<!--@end-->>{$lang->column_type_list[$k]}</option> <!--@end-->
<!--@end--> <!--@end-->
<!--@end--> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th>{$lang->is_required}</th>
<th>{$lang->is_required}</th> <td><input type="checkbox" name="is_required" value="Y" <!--@if($selected_var->is_required=='Y')-->checked="checked"<!--@end--> /></td>
<td><input type="checkbox" name="is_required" value="Y" <!--@if($selected_var->is_required=='Y')-->checked="checked"<!--@end--> /></td> </tr>
</tr> <tr>
<tr> <th>{$lang->default_value}</th>
<th>{$lang->default_value}</th> <td><input type="text" name="default" value="{$selected_var->default}" /><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> <tr>
<tr> <th>{$lang->description}</th>
<th>{$lang->description}</th> <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>
<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> <tr>
<tr> <th>{$lang->cmd_search}</th>
<th>{$lang->cmd_search}</th> <td><input type="checkbox" name="search" value="Y" <!--@if($selected_var->search=='Y')-->checked="checked"<!--@end--> /></td>
<td><input type="checkbox" name="search" value="Y" <!--@if($selected_var->search=='Y')-->checked="checked"<!--@end--> /></td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<!--@if($selected_var)--> <!--@if($selected_var)-->
<span class="btn"><input type="submit" value="{$lang->cmd_modify}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_modify}" /></span>
@ -74,47 +72,45 @@
<!--@else--> <!--@else-->
<h3 class="h3">{$lang->extra_vars}</h3> <h3 class="h3">{$lang->extra_vars}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th>{$lang->no}</th>
<th>{$lang->no}</th> <th>{$lang->eid}</th>
<th>{$lang->eid}</th> <th>{$lang->column_name}</th>
<th>{$lang->column_name}</th> <th>{$lang->column_type}</th>
<th>{$lang->column_type}</th> <th>{$lang->is_required}</th>
<th>{$lang->is_required}</th> <th>{$lang->cmd_search}</th>
<th>{$lang->cmd_search}</th> <th>&nbsp;</th>
<th>&nbsp;</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> <!--@foreach($extra_keys as $key => $val)-->
<!--@foreach($extra_keys as $key => $val)--> <tr>
<tr> <td rowspan="3">{$val->idx}</td>
<td rowspan="3">{$val->idx}</td> <td rowspan="3">{$val->eid}</td>
<td rowspan="3">{$val->eid}</td> <td><b>{$val->name}</b></td>
<td><b>{$val->name}</b></td> <td>{$lang->column_type_list[$val->type]}</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->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"><!--@if($val->search=='Y')--><b>{$lang->search_target}</b><!--@else-->N<!--@end--></td> <td rowspan="3">
<td rowspan="3"> <!--@if($val->idx>1)--><a href="#" onclick="moveVar('up','{$module_srl}','{$val->idx}'); return false;" class="buttonSet buttonUp"><span>{$lang->cmd_move_up}</span></a><!--@end-->
<!--@if($val->idx>1)--><a href="#" onclick="moveVar('up','{$module_srl}','{$val->idx}'); return false;" class="buttonSet buttonUp"><span>{$lang->cmd_move_up}</span></a><!--@end--> <a cond="count($extra_keys) > $val->idx" href="#" onclick="moveVar('down','{$module_srl}','{$val->idx}');return false;" class="buttonSet buttonDown">{$lang->cmd_move_down}</a>
<a cond="count($extra_keys) > $val->idx" href="#" onclick="moveVar('down','{$module_srl}','{$val->idx}');return false;" class="buttonSet buttonDown">{$lang->cmd_move_down}</a> <a href="{getUrl('selected_var_idx',$val->idx)}" class="buttonSet buttonSetting"><span>{$lang->cmd_modify}...</span></a>
<a href="{getUrl('selected_var_idx',$val->idx)}" class="buttonSet buttonSetting"><span>{$lang->cmd_modify}...</span></a> <a href="#" onclick="return doDeleteExtraKey('{$module_srl}','{$val->idx}');" class="buttonSet buttonDelete"><span>{$lang->cmd_delete}</span></a>
<a href="#" onclick="return doDeleteExtraKey('{$module_srl}','{$val->idx}');" class="buttonSet buttonDelete"><span>{$lang->cmd_delete}</span></a> </td>
</td> </tr>
</tr> <tr>
<tr> <td>{$lang->default_value}</td>
<td>{$lang->default_value}</td> <td >{$val->default}&nbsp;</td>
<td >{$val->default}&nbsp;</td> </tr>
</tr> <tr>
<tr> <td>{$lang->description}</td>
<td>{$lang->description}</td> <td >{$val->desc}&nbsp;</td>
<td >{$val->desc}&nbsp;</td> </tr>
</tr> <!--@end-->
<!--@end--> </tbody>
</tbody> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><a href="{getUrl('type','insertExtraForm','selected_var_idx','')}">{$lang->cmd_insert}</a></span> <span class="btn"><a href="{getUrl('type','insertExtraForm','selected_var_idx','')}">{$lang->cmd_insert}</a></span>
</div> </div>

View file

@ -1,9 +1,9 @@
<load target="js/document_admin.js" usecdn="true" /> <load target="js/document_admin.js" usecdn="true" />
<h3 class="h3">{$lang->document} {$lang->cmd_management}</h3> <h3 class="h3">{$lang->document} {$lang->cmd_management}</h3>
<div class="cnb"> <p>
<ul> <a href="{getUrl('act','dispDocumentAdminList')}" class="active"|cond="$act=='dispDocumentAdminList'">{$lang->document_list}</a>
<li <!--@if($act=='dispDocumentAdminList')-->class="active"<!--@end-->><a href="{getUrl('act','dispDocumentAdminList')}">{$lang->document_list}</a></li> <i>|</i>
<li <!--@if($act=='dispDocumentAdminConfig')-->class="active"<!--@end-->><a href="{getUrl('act','dispDocumentAdminConfig')}">{$lang->cmd_module_config}</a></li> <a href="{getUrl('act','dispDocumentAdminConfig')}" class="active"|cond="$act=='dispDocumentAdminConfig'">{$lang->cmd_module_config}</a>
<li <!--@if($act=='dispDocumentAdminDeclared')-->class="active"<!--@end-->><a href="{getUrl('act','dispDocumentAdminDeclared')}">{$lang->cmd_declared_list}</a></li> <i>|</i>
</ul> <a href="{getUrl('act','dispDocumentAdminDeclared')}" class="active"|cond="$act=='dispDocumentAdminDeclared'">{$lang->cmd_declared_list}</a>
</div> </p>

View file

@ -1,28 +1,26 @@
<h1 class="h1">{$lang->cmd_view_saved_document}</h1> <h1 class="h1">{$lang->cmd_view_saved_document}</h1>
<!-- 목록 --> <!-- 목록 -->
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0">
<caption>Total : {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption> <caption>Total : {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<thead> <thead>
<tr> <tr>
<th class="title">{$lang->date}</th> <th class="title">{$lang->date}</th>
<th class="title">{$lang->title}</th> <th class="title">{$lang->title}</th>
<th class="title">{$lang->cmd_select}</th> <th class="title">{$lang->cmd_select}</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<!--@foreach($document_list as $no => $val)--> <!--@foreach($document_list as $no => $val)-->
<tr> <tr>
<td>{$val->getRegdate("Y-m-d H:i:s")}</td> <td>{$val->getRegdate("Y-m-d H:i:s")}</td>
<td > <a href="#" onclick="jQuery('#saved_document_{$val->document_srl}').toggle(); setFixedPopupSize(); return false;">{$val->getTitle()}</a> <td > <a href="#" onclick="jQuery('#saved_document_{$val->document_srl}').toggle(); setFixedPopupSize(); return false;">{$val->getTitle()}</a>
<div id="saved_document_{$val->document_srl}" class="saved_content" style="display:none;">{$val->getContent(false)}</div> <div id="saved_document_{$val->document_srl}" class="saved_content" style="display:none;">{$val->getContent(false)}</div>
</td> </td>
<td><a href="#" onclick="doDocumentSelect('{$val->document_srl}'); return false;" class="buttonSet buttonActive"><span>{$lang->cmd_select}</span></a></td> <td><a href="#" onclick="doDocumentSelect('{$val->document_srl}'); return false;" class="buttonSet buttonActive"><span>{$lang->cmd_select}</span></a></td>
</tr> </tr>
<!--@end--> <!--@end-->
</tbody> </tbody>
</table> </table>
</div>
<!-- 페이지 네비게이션 --> <!-- 페이지 네비게이션 -->
<div class="pagination"> <div class="pagination">
<a href="{getUrl('page','','module_srl','')}" class="direction">&lsaquo; {$lang->first_page}</a> <a href="{getUrl('page','','module_srl','')}" class="direction">&lsaquo; {$lang->first_page}</a>

View file

@ -4,75 +4,73 @@
<h1 class="h1">{$component_info->title} ver. {$component_info->version}</h1> <h1 class="h1">{$component_info->title} ver. {$component_info->version}</h1>
<form action="./" method="get" onSubmit="return false" id="fo"> <form action="./" method="get" onSubmit="return false" id="fo">
<input type="hidden" name="editor_sequence" value="{$editor_sequence}" /> <input type="hidden" name="editor_sequence" value="{$editor_sequence}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="120" />
<col width="120" /> <col />
<col /> <tr>
<tr> <th scope="row">{$lang->width}</th>
<th scope="row">{$lang->width}</th> <td><input type="text" size="3" id="width" value="400" />px</td>
<td><input type="text" size="3" id="width" value="400" />px</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->gallery_style}</th>
<th scope="row">{$lang->gallery_style}</th> <td>
<td> <select id="gallery_style">
<select id="gallery_style"> <option value="slide">{$lang->gallery_slide_style}</option>
<option value="slide">{$lang->gallery_slide_style}</option> <option value="list">{$lang->gallery_list_style}</option>
<option value="list">{$lang->gallery_list_style}</option> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->gallery_slide_align}</th>
<th scope="row">{$lang->gallery_slide_align}</th> <td>
<td> <select id="gallery_align">
<select id="gallery_align"> <option value="center">{$lang->gallery_slide_center}</option>
<option value="center">{$lang->gallery_slide_center}</option> <option value="left">{$lang->gallery_slide_left}</option>
<option value="left">{$lang->gallery_slide_left}</option> <option value="right">{$lang->gallery_slide_right}</option>
<option value="right">{$lang->gallery_slide_right}</option> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->gallery_border_thickness}</th>
<th scope="row">{$lang->gallery_border_thickness}</th> <td><input type="text" size="1" id="border_thickness" value="0" />px</td>
<td><input type="text" size="1" id="border_thickness" value="0" />px</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->gallery_border_color}</th>
<th scope="row">{$lang->gallery_border_color}</th> <td>
<td> <div class="editor_color_box">
<div class="editor_color_box"> <script>
<script> printColor("border", "{$tpl_path}/images/blank.gif");
printColor("border", "{$tpl_path}/images/blank.gif"); </script>
</script> </div>
</div> <ul class="buttonLeft">
<ul class="buttonLeft"> <li><img src="./images/border_solid.gif" alt="blank" class="border_preview_color" id="border_preview_color" /></li>
<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" 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>
</ul> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->gallery_bg_color}</th>
<th scope="row">{$lang->gallery_bg_color}</th> <td>
<td> <div class="editor_color_box">
<div class="editor_color_box"> <script>
<script> printColor("bg", "{$tpl_path}/images/blank.gif");
printColor("bg", "{$tpl_path}/images/blank.gif"); </script>
</script> </div>
</div> <ul class="buttonLeft">
<ul class="buttonLeft"> <li><img src="./images/blank.gif" alt="blank" class="bg_preview_color" id="bg_preview_color" /></li>
<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" 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>
</ul> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->image_list}</th>
<th scope="row">{$lang->image_list}</th> <td>
<td> <select id="image_list" size="6" multiple="true" class="image_list">
<select id="image_list" size="6" multiple="true" class="image_list"> </select>
</select> <p>{$lang->about_image_list}</p>
<p>{$lang->about_image_list}</p> </td>
</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><button type="button" onclick="insertSlideShow()">{$lang->cmd_insert}</button></span> <span class="btn"><button type="button" onclick="insertSlideShow()">{$lang->cmd_insert}</button></span>
<span class="btn"><a href="./?module=editor&amp;act=dispEditorComponentInfo&amp;component_name={$component_info->component_name}" target="_blank" onclick="window.open('this.href','ComponentInfo','width=10,height=10');return false;">{$lang->about_component}</a></span> <span class="btn"><a href="./?module=editor&amp;act=dispEditorComponentInfo&amp;component_name={$component_info->component_name}" target="_blank" onclick="window.open('this.href','ComponentInfo','width=10,height=10');return false;">{$lang->about_component}</a></span>

View file

@ -4,82 +4,80 @@
<h1 class="h1">{$component_info->title} ver. {$component_info->version}</h1> <h1 class="h1">{$component_info->title} ver. {$component_info->version}</h1>
<form action="./" method="get" onSubmit="return false" id="fo"> <form action="./" method="get" onSubmit="return false" id="fo">
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="100" />
<col width="100" /> <col />
<col /> <tr>
<tr> <th scope="row">{$lang->image_url}</th>
<th scope="row">{$lang->image_url}</th> <td><input type="text" id="image_url" value="{url_decode($manual_url)}" /></td>
<td><input type="text" id="image_url" value="{url_decode($manual_url)}" /></td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->image_scale}</th>
<th scope="row">{$lang->image_scale}</th> <td>
<td> <ul>
<ul> <li><input type="text" id="width" value="0" size="4" />px </li>
<li><input type="text" id="width" value="0" size="4" />px </li> <li><input type="text" id="height" value="0" size="4" />px </li>
<li><input type="text" id="height" value="0" size="4" />px </li> <li><button type="button" id="get_scale">{$lang->cmd_get_scale}</button></li>
<li><button type="button" id="get_scale">{$lang->cmd_get_scale}</button></li> </ul>
</ul> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">URL</th>
<th scope="row">URL</th> <td><input type="text" id="link_url" value=""/></td>
<td><input type="text" id="link_url" value=""/></td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->urllink_open_window}</th>
<th scope="row">{$lang->urllink_open_window}</th> <td><input type="checkbox" id="open_window" value="Y" /> {$lang->about_url_link_open_window}</td>
<td><input type="checkbox" id="open_window" value="Y" /> {$lang->about_url_link_open_window}</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->image_alt}</th>
<th scope="row">{$lang->image_alt}</th> <td><input type="text" id="image_alt" value=""/></td>
<td><input type="text" id="image_alt" value=""/></td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->image_align}</th>
<th scope="row">{$lang->image_align}</th> <td>
<td> <div class="image_align">
<div class="image_align"> <input type="radio" name="align" value="" id="align_normal" checked="checked"/>
<input type="radio" name="align" value="" id="align_normal" checked="checked"/> <label for="align_normal">
<label for="align_normal"> <img src="./images/align_normal.gif" alt="{$lang->image_align_normal}" />
<img src="./images/align_normal.gif" alt="{$lang->image_align_normal}" /> {$lang->image_align_normal}
{$lang->image_align_normal} </label>
</label> </div>
</div>
<div class="image_align"> <div class="image_align">
<input type="radio" name="align" value="left" id="align_left" /> <input type="radio" name="align" value="left" id="align_left" />
<label for="align_left"> <label for="align_left">
<img src="./images/align_left.gif" alt="{$lang->image_align_left}" /> <img src="./images/align_left.gif" alt="{$lang->image_align_left}" />
{$lang->image_align_left} {$lang->image_align_left}
</label> </label>
</div> </div>
<div class="image_align"> <div class="image_align">
<input type="radio" name="align" value="middle" id="align_middle" /> <input type="radio" name="align" value="middle" id="align_middle" />
<label for="align_middle"> <label for="align_middle">
<img src="./images/align_middle.gif" alt="{$lang->image_align_middle}" /> <img src="./images/align_middle.gif" alt="{$lang->image_align_middle}" />
{$lang->image_align_middle} {$lang->image_align_middle}
</label> </label>
</div> </div>
<div class="image_align"> <div class="image_align">
<input type="radio" name="align" value="right" id="align_right" /> <input type="radio" name="align" value="right" id="align_right" />
<label for="align_right"> <label for="align_right">
<img src="./images/align_right.gif" alt="{$lang->image_align_right}" /> <img src="./images/align_right.gif" alt="{$lang->image_align_right}" />
{$lang->image_align_right} {$lang->image_align_right}
</label> </label>
</div> </div>
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row">{$lang->image_border}</th> <th scope="row">{$lang->image_border}</th>
<td><input type="text" id="image_border" value="0" size="2" />px</td> <td><input type="text" id="image_border" value="0" size="2" />px</td>
</tr> </tr>
<tr> <tr>
<th scope="row">{$lang->image_margin}</th> <th scope="row">{$lang->image_margin}</th>
<td><input type="text" id="image_margin" value="0" size="2" />px</td> <td><input type="text" id="image_margin" value="0" size="2" />px</td>
</tr> </tr>
</table> </table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><button type="button" id="btn_insert">{$lang->cmd_insert}</button></span> <span class="btn"><button type="button" id="btn_insert">{$lang->cmd_insert}</button></span>
<span class="btn"><a href="./?module=editor&amp;act=dispEditorComponentInfo&amp;component_name={$component_info->component_name}" target="_blank" onclick="window.open('this.href','ComponentInfo','width=10,height=10');return false;">{$lang->about_component}</a></span> <span class="btn"><a href="./?module=editor&amp;act=dispEditorComponentInfo&amp;component_name={$component_info->component_name}" target="_blank" onclick="window.open('this.href','ComponentInfo','width=10,height=10');return false;">{$lang->about_component}</a></span>

View file

@ -8,42 +8,40 @@
<!--@end--> <!--@end-->
<h1 class="h1">{$component_info->title} ver. {$component_info->version}</h1> <h1 class="h1">{$component_info->title} ver. {$component_info->version}</h1>
<form action="./" method="get" onsubmit="return false" id="fo"> <form action="./" method="get" onsubmit="return false" id="fo">
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="150" />
<col width="150" /> <col />
<col /> <tr>
<tr> <th scope="row"><div>{$lang->multimedia_url}</div></th>
<th scope="row"><div>{$lang->multimedia_url}</div></th> <td><input type="text" id="multimedia_url" value="{$manual_url}" /></td>
<td><input type="text" id="multimedia_url" value="{$manual_url}" /></td> </tr>
</tr> <tr>
<tr> <th scope="row"><div>{$lang->multimedia_caption}</div></th>
<th scope="row"><div>{$lang->multimedia_caption}</div></th> <td><input type="text" id="multimedia_caption" value="" /></td>
<td><input type="text" id="multimedia_caption" value="" /></td> </tr>
</tr> <tr>
<tr> <th scope="row"><div>{$lang->multimedia_width}</div></th>
<th scope="row"><div>{$lang->multimedia_width}</div></th> <td><input type="text" size="3" id="multimedia_width" value="400" />px</td>
<td><input type="text" size="3" id="multimedia_width" value="400" />px</td> </tr>
</tr> <tr>
<tr> <th scope="row"><div>{$lang->multimedia_height}</div></th>
<th scope="row"><div>{$lang->multimedia_height}</div></th> <td><input type="text" size="3" id="multimedia_height" value="400" />px</td>
<td><input type="text" size="3" id="multimedia_height" value="400" />px</td> </tr>
</tr> <tr>
<tr> <th scope="row"><div>{$lang->multimedia_auto_start}</div></th>
<th scope="row"><div>{$lang->multimedia_auto_start}</div></th> <td><input type="checkbox" id="multimedia_auto_start" value="Y" /></td>
<td><input type="checkbox" id="multimedia_auto_start" value="Y" /></td> </tr>
</tr> <tr>
<tr> <th scope="row"><div>{$lang->multimedia_wmode}</div></th>
<th scope="row"><div>{$lang->multimedia_wmode}</div></th> <td>
<td> <select id="multimedia_wmode">
<select id="multimedia_wmode"> <option value="window">{$lang->multimedia_wmode_window}</option>
<option value="window">{$lang->multimedia_wmode_window}</option> <option value="opaque">{$lang->multimedia_wmode_opaque}</option>
<option value="opaque">{$lang->multimedia_wmode_opaque}</option> <option value="transparent" selected="selected">{$lang->multimedia_wmode_transparent}</option>
<option value="transparent" selected="selected">{$lang->multimedia_wmode_transparent}</option> </select>
</select> <p>{$lang->about_ccl_allow_modification}</p>
<p>{$lang->about_ccl_allow_modification}</p> </td>
</td> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><button type="button">{$lang->cmd_insert}</button></span> <span class="btn"><button type="button">{$lang->cmd_insert}</button></span>
<span class="btn"><a href="./?module=editor&amp;act=dispEditorComponentInfo&amp;component_name={$component_info->component_name}" target="_blank">{$lang->about_component}</a></span> <span class="btn"><a href="./?module=editor&amp;act=dispEditorComponentInfo&amp;component_name={$component_info->component_name}" target="_blank">{$lang->about_component}</a></span>

View file

@ -15,77 +15,73 @@
<input type="hidden" name="component" value="{$component_info->component_name}" /> <input type="hidden" name="component" value="{$component_info->component_name}" />
<input type="hidden" name="method" value="insertPoll" /> <input type="hidden" name="method" value="insertPoll" />
<input type="hidden" name="poll_srl" value="" /> <input type="hidden" name="poll_srl" value="" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="100" />
<col width="100" /> <col />
<col /> <tr>
<tr> <th scope="row">{$lang->poll_stop_date}</th>
<th scope="row">{$lang->poll_stop_date}</th> <td>
<td>
<input type="hidden" name="stop_date" id="stop_date" value="{date('Ymd',time()+60*60*24*30)}" /> <input type="hidden" name="stop_date" id="stop_date" value="{date('Ymd',time()+60*60*24*30)}" />
<input type="text" class="inputDate" value="{date('Y-m-d',time()+60*60*24*30)}" readonly="readonly" /> <input type="text" class="inputDate" value="{date('Y-m-d',time()+60*60*24*30)}" readonly="readonly" />
<script> <script>
(function($){ (function($){
$(function(){ $(function(){
var option = { var option = {
changeMonth:true, changeMonth:true,
changeYear:true, changeYear:true,
gotoCurrent: false gotoCurrent: false
,yearRange:'-100:+10' ,yearRange:'-100:+10'
, onSelect:function(){ , onSelect:function(){
$(this).prev('input[type="hidden"]').val(this.value.replace(/-/g,"")); $(this).prev('input[type="hidden"]').val(this.value.replace(/-/g,""));
} }
}; };
$.extend(option,$.datepicker.regional['{$lang_type}']); $.extend(option,$.datepicker.regional['{$lang_type}']);
$(".inputDate").datepicker(option); $(".inputDate").datepicker(option);
}); });
})(jQuery); })(jQuery);
</script> </script>
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row">{$lang->skin}</th> <th scope="row">{$lang->skin}</th>
<td> <td>
<select name="skin"> <select name="skin">
<!--@foreach($skin_list as $skin=>$skin_info)--> <!--@foreach($skin_list as $skin=>$skin_info)-->
<option value="{$skin}">{$skin_info->title} (skin by {$skin_info->maker->name})</option> <option value="{$skin}">{$skin_info->title} (skin by {$skin_info->maker->name})</option>
<!--@end--> <!--@end-->
</select> </select>
</td> </td>
</tr> </tr>
</table> </table>
<div id="poll_source" style="display:none"> <div id="poll_source" style="display:none">
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="100" />
<col width="100" /> <col />
<col /> <tr>
<tr> <th scope="row"><div><label>{$lang->poll_chk_count}</label></div></th>
<th scope="row"><div><label>{$lang->poll_chk_count}</label></div></th> <td><input type="text" name="checkcount_tidx" value="1" size="1" /></td>
<td><input type="text" name="checkcount_tidx" value="1" size="1" /></td> </tr>
</tr> <tr>
<tr> <th scope="row"><div>{$lang->poll_title}</div></th>
<th scope="row"><div>{$lang->poll_title}</div></th> <td><input type="text" name="title_tidx" /></td>
<td><input type="text" name="title_tidx" /></td> </tr>
</tr>
<tr>
<tr> <th scope="row"><div>{$lang->poll_item} 1</div></th>
<th scope="row"><div>{$lang->poll_item} 1</div></th> <td><input type="text" name="item_tidx_1" /></td>
<td><input type="text" name="item_tidx_1" /></td> </tr>
</tr>
<tr>
<tr> <th scope="row"><div>{$lang->poll_item} 2</div></th>
<th scope="row"><div>{$lang->poll_item} 2</div></th> <td><input type="text" name="item_tidx_2" /></td>
<td><input type="text" name="item_tidx_2" /></td> </tr>
</tr> </table>
</table> <button type="button" class="_add_item">{$lang->cmd_add_item}</button>
</div> <button type="button" class="_del_item">{$lang->cmd_del_item}</button>
<button type="button" class="_add_item">{$lang->cmd_add_item}</button> <button type="button" class="_del_poll">{$lang->cmd_del_poll}</button>
<button type="button" class="_del_item">{$lang->cmd_del_item}</button> </div>
<button type="button" class="_del_poll">{$lang->cmd_del_poll}</button>
</div>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_submit}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_submit}" /></span>
<span class="btn"><button type="button" id="add_poll">{$lang->cmd_add_poll}</button></span> <span class="btn"><button type="button" id="add_poll">{$lang->cmd_add_poll}</button></span>

View file

@ -6,172 +6,170 @@
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" /> <input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" /> <input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<h3 class="h3">{$lang->editor}</h3> <h3 class="h3">{$lang->editor}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th scope="col">&nbsp;</th>
<th scope="col">&nbsp;</th> <th scope="col">{$lang->document}</th>
<th scope="col">{$lang->document}</th> <th scope="col">{$lang->comment}</th>
<th scope="col">{$lang->comment}</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> <tr>
<tr> <th rowspan="2" scope="row">{$lang->editor_skin}</th>
<th rowspan="2" scope="row">{$lang->editor_skin}</th> <td colspan="2">{$lang->about_editor_skin}</td>
<td colspan="2">{$lang->about_editor_skin}</td> </tr>
</tr> <tr>
<tr> <td>
<td> <select name="editor_skin" onchange="getEditorSkinColorList(this.value, null, 'document')">
<select name="editor_skin" onchange="getEditorSkinColorList(this.value, null, 'document')"> <!--@foreach($editor_skin_list as $editor)-->
<!--@foreach($editor_skin_list as $editor)--> <option value="{$editor}" <!--@if($editor==$editor_config->editor_skin)-->selected="selected"<!--@end-->>{$editor}</option>
<option value="{$editor}" <!--@if($editor==$editor_config->editor_skin)-->selected="selected"<!--@end-->>{$editor}</option> <!--@end-->
</select>
<br/>
<select name="sel_editor_colorset" id="sel_editor_colorset"<!--@if(!count($editor_colorset_list))--> style="display:none"<!--@end-->>
<!--@foreach($editor_colorset_list as $key => $val)-->
<option value="{$val->name}" <!--@if($editor_config->sel_editor_colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end--> <!--@end-->
</select> </select>
<br/> </td>
<select name="sel_editor_colorset" id="sel_editor_colorset"<!--@if(!count($editor_colorset_list))--> style="display:none"<!--@end-->> <td>
<!--@foreach($editor_colorset_list as $key => $val)--> <select name="comment_editor_skin" onchange="getEditorSkinColorList(this.value, null, 'comment')">
<option value="{$val->name}" <!--@if($editor_config->sel_editor_colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title}</option> <!--@foreach($editor_skin_list as $editor)-->
<!--@end--> <option value="{$editor}" <!--@if($editor==$editor_config->comment_editor_skin)-->selected="selected"<!--@end-->>{$editor}</option>
</select> <!--@end-->
</td> </select>
<td> <br/>
<select name="comment_editor_skin" onchange="getEditorSkinColorList(this.value, null, 'comment')"> <select name="sel_comment_editor_colorset" id="sel_comment_editor_colorset"<!--@if(!count($editor_comment_colorset_list))--> style="display:none"<!--@end-->>
<!--@foreach($editor_skin_list as $editor)--> <!--@foreach($editor_comment_colorset_list as $key => $val)-->
<option value="{$editor}" <!--@if($editor==$editor_config->comment_editor_skin)-->selected="selected"<!--@end-->>{$editor}</option> <option value="{$val->name}" <!--@if($editor_config->sel_comment_editor_colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end--> <!--@end-->
</select> </select>
<br/> </td>
<select name="sel_comment_editor_colorset" id="sel_comment_editor_colorset"<!--@if(!count($editor_comment_colorset_list))--> style="display:none"<!--@end-->> </tr>
<!--@foreach($editor_comment_colorset_list as $key => $val)--> <tr>
<option value="{$val->name}" <!--@if($editor_config->sel_comment_editor_colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title}</option> <th rowspan="2" scope="row">{$lang->content_style}</th>
<!--@end--> <td colspan="2"><p>{$lang->about_content_style}</p></td>
</select> </tr>
</td> <tr>
</tr> <td>
<tr> <select name="content_style">
<th rowspan="2" scope="row">{$lang->content_style}</th> <!--@foreach($content_style_list as $key => $val)-->
<td colspan="2"><p>{$lang->about_content_style}</p></td> <option value="{$key}" <!--@if($key==$editor_config->content_style||!$editor_config->content_style&&$key=='default')-->selected="selected"<!--@end-->>{$val->title}</option>
</tr> <!--@end-->
<tr> </select>
<td> </td>
<select name="content_style"> <td>
<!--@foreach($content_style_list as $key => $val)--> <select name="comment_content_style">
<option value="{$key}" <!--@if($key==$editor_config->content_style||!$editor_config->content_style&&$key=='default')-->selected="selected"<!--@end-->>{$val->title}</option> <!--@foreach($content_style_list as $key => $val)-->
<!--@end--> <option value="{$key}" <!--@if($key==$editor_config->comment_content_style||!$editor_config->comment_content_style&&$key=='default')-->selected="selected"<!--@end-->>{$val->title}</option>
</select> <!--@end-->
</td> </select>
<td> </td>
<select name="comment_content_style"> </tr>
<!--@foreach($content_style_list as $key => $val)--> <tr>
<option value="{$key}" <!--@if($key==$editor_config->comment_content_style||!$editor_config->comment_content_style&&$key=='default')-->selected="selected"<!--@end-->>{$val->title}</option> <th rowspan="2" scope="row"><label for="content_font">{$lang->content_font}</label></th>
<!--@end--> <td colspan="2">{$lang->about_content_font}</td>
</select> </tr>
</td> <tr>
</tr> <td colspan="2">
<tr> <input type="text" name="content_font" id="content_font" value="{str_replace(array('"','\''),'',$editor_config->content_font)}" />
<th rowspan="2" scope="row"><label for="content_font">{$lang->content_font}</label></th> </td>
<td colspan="2">{$lang->about_content_font}</td> </tr>
</tr> <tr>
<tr> <th rowspan="2" scope="row"><label for="content_font_size">{$lang->content_font_size}</label></th>
<td colspan="2"> <td colspan="2">{$lang->about_content_font_size}</td>
<input type="text" name="content_font" id="content_font" value="{str_replace(array('"','\''),'',$editor_config->content_font)}" /> </tr>
</td> <tr>
</tr> <td colspan="2">
<tr> <input type="text" name="content_font_size" id="content_font_size" value="{$editor_config->content_font_size}" style="width:50px" />
<th rowspan="2" scope="row"><label for="content_font_size">{$lang->content_font_size}</label></th> </td>
<td colspan="2">{$lang->about_content_font_size}</td> </tr>
</tr> <tr>
<tr> <th rowspan="2" scope="row">{$lang->editor_height}</th>
<td colspan="2"> <td colspan="2">{$lang->about_editor_height}</td>
<input type="text" name="content_font_size" id="content_font_size" value="{$editor_config->content_font_size}" style="width:50px" /> </tr>
</td> <tr>
</tr> <td>
<tr> <input type="text" name="editor_height" value="{$editor_config->editor_height}" style="width:30px" /> px
<th rowspan="2" scope="row">{$lang->editor_height}</th> </td>
<td colspan="2">{$lang->about_editor_height}</td> <td>
</tr> <input type="text" name="comment_editor_height" value="{$editor_config->comment_editor_height}" style="width:30px" /> px
<tr> </td>
<td> </tr>
<input type="text" name="editor_height" value="{$editor_config->editor_height}" style="width:30px" /> px <tr>
</td> <th rowspan="2" scope="row">{$lang->enable_autosave}</th>
<td> <td colspan="2">{$lang->about_enable_autosave}</td>
<input type="text" name="comment_editor_height" value="{$editor_config->comment_editor_height}" style="width:30px" /> px </tr>
</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" scope="row">{$lang->enable_autosave}</th> <tr>
<td colspan="2">{$lang->about_enable_autosave}</td> <th rowspan="2" scope="row">{$lang->enable_html_grant}</th>
</tr> <td colspan="2">{$lang->about_enable_html_grant}</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> <td>
<tr> <!--@foreach($group_list as $k => $v)-->
<th rowspan="2" scope="row">{$lang->enable_html_grant}</th> <input type="checkbox" name="enable_html_grant[]" value="{$k}" id="enable_html_{$k}" <!--@if(in_array($k, $editor_config->enable_html_grant))-->checked="checked"<!--@end-->/> <label for="enable_html_{$k}">{$v->title}</label>
<td colspan="2">{$lang->about_enable_html_grant}</td> <!--@end-->
</tr> </td>
<tr> <td>
<td> <!--@foreach($group_list as $k => $v)-->
<!--@foreach($group_list as $k => $v)--> <input type="checkbox" name="enable_comment_html_grant[]" value="{$k}" id="enable_comment_html_{$k}" <!--@if(in_array($k, $editor_config->enable_comment_html_grant))-->checked="checked"<!--@end-->/> <label for="enable_comment_html_{$k}">{$v->title}</label>
<input type="checkbox" name="enable_html_grant[]" value="{$k}" id="enable_html_{$k}" <!--@if(in_array($k, $editor_config->enable_html_grant))-->checked="checked"<!--@end-->/> <label for="enable_html_{$k}">{$v->title}</label> <!--@end-->
<!--@end--> </td>
</td> </tr>
<td> <tr>
<!--@foreach($group_list as $k => $v)--> <th rowspan="2" scope="row">{$lang->upload_file_grant}</th>
<input type="checkbox" name="enable_comment_html_grant[]" value="{$k}" id="enable_comment_html_{$k}" <!--@if(in_array($k, $editor_config->enable_comment_html_grant))-->checked="checked"<!--@end-->/> <label for="enable_comment_html_{$k}">{$v->title}</label> <td colspan="2">{$lang->about_upload_file_grant}</td>
<!--@end--> </tr>
</td> <tr>
</tr> <td>
<tr> <!--@foreach($group_list as $k => $v)-->
<th rowspan="2" scope="row">{$lang->upload_file_grant}</th> <input type="checkbox" name="upload_file_grant[]" value="{$k}" id="fileupload_{$k}" <!--@if(in_array($k, $editor_config->upload_file_grant))-->checked="checked"<!--@end-->/> <label for="fileupload_{$k}">{$v->title}</label>
<td colspan="2">{$lang->about_upload_file_grant}</td> <!--@end-->
</tr> </td>
<tr> <td>
<td> <!--@foreach($group_list as $k => $v)-->
<!--@foreach($group_list as $k => $v)--> <input type="checkbox" name="comment_upload_file_grant[]" value="{$k}" id="comment_fileupload_{$k}" <!--@if(in_array($k, $editor_config->comment_upload_file_grant))-->checked="checked"<!--@end-->/> <label for="comment_fileupload_{$k}">{$v->title}</label>
<input type="checkbox" name="upload_file_grant[]" value="{$k}" id="fileupload_{$k}" <!--@if(in_array($k, $editor_config->upload_file_grant))-->checked="checked"<!--@end-->/> <label for="fileupload_{$k}">{$v->title}</label> <!--@end-->
<!--@end--> </td>
</td> </tr>
<td> <tr>
<!--@foreach($group_list as $k => $v)--> <th rowspan="2" scope="row">{$lang->enable_default_component_grant}</th>
<input type="checkbox" name="comment_upload_file_grant[]" value="{$k}" id="comment_fileupload_{$k}" <!--@if(in_array($k, $editor_config->comment_upload_file_grant))-->checked="checked"<!--@end-->/> <label for="comment_fileupload_{$k}">{$v->title}</label> <td colspan="2">{$lang->about_default_component_grant}</td>
<!--@end--> </tr>
</td> <tr>
</tr> <td>
<tr> <!--@foreach($group_list as $k => $v)-->
<th rowspan="2" scope="row">{$lang->enable_default_component_grant}</th> <input type="checkbox" name="enable_default_component_grant[]" value="{$k}" id="default_componen_{$k}" <!--@if(in_array($k, $editor_config->enable_default_component_grant))-->checked="checked"<!--@end-->/> <label for="default_componen_{$k}">{$v->title}</label>
<td colspan="2">{$lang->about_default_component_grant}</td> <!--@end-->
</tr> </td>
<tr> <td>
<td> <!--@foreach($group_list as $k => $v)-->
<!--@foreach($group_list as $k => $v)--> <input type="checkbox" name="enable_comment_default_component_grant[]" value="{$k}" id="comment_default_component_{$k}" <!--@if(in_array($k, $editor_config->enable_comment_default_component_grant))-->checked="checked"<!--@end-->/> <label for="comment_default_component_{$k}">{$v->title}</label>
<input type="checkbox" name="enable_default_component_grant[]" value="{$k}" id="default_componen_{$k}" <!--@if(in_array($k, $editor_config->enable_default_component_grant))-->checked="checked"<!--@end-->/> <label for="default_componen_{$k}">{$v->title}</label> <!--@end-->
<!--@end--> </td>
</td> </tr>
<td> <tr>
<!--@foreach($group_list as $k => $v)--> <th rowspan="2" scope="row">{$lang->enable_component_grant}</th>
<input type="checkbox" name="enable_comment_default_component_grant[]" value="{$k}" id="comment_default_component_{$k}" <!--@if(in_array($k, $editor_config->enable_comment_default_component_grant))-->checked="checked"<!--@end-->/> <label for="comment_default_component_{$k}">{$v->title}</label> <td colspan="2">{$lang->about_component_grant}</td>
<!--@end--> </tr>
</td> <tr>
</tr> <td>
<tr> <!--@foreach($group_list as $k => $v)-->
<th rowspan="2" scope="row">{$lang->enable_component_grant}</th> <input type="checkbox" name="enable_component_grant[]" value="{$k}" id="componen_{$k}" <!--@if(in_array($k, $editor_config->enable_component_grant))-->checked="checked"<!--@end-->/> <label for="componen_{$k}">{$v->title}</label>
<td colspan="2">{$lang->about_component_grant}</td> <!--@end-->
</tr> </td>
<tr> <td>
<td> <!--@foreach($group_list as $k => $v)-->
<!--@foreach($group_list as $k => $v)--> <input type="checkbox" name="enable_comment_component_grant[]" value="{$k}" id="comment_component_{$k}" <!--@if(in_array($k, $editor_config->enable_comment_component_grant))-->checked="checked"<!--@end-->/> <label for="comment_component_{$k}">{$v->title}</label>
<input type="checkbox" name="enable_component_grant[]" value="{$k}" id="componen_{$k}" <!--@if(in_array($k, $editor_config->enable_component_grant))-->checked="checked"<!--@end-->/> <label for="componen_{$k}">{$v->title}</label> <!--@end-->
<!--@end--> </td>
</td> </tr>
<td> </tbody>
<!--@foreach($group_list as $k => $v)--> </table>
<input type="checkbox" name="enable_comment_component_grant[]" value="{$k}" id="comment_component_{$k}" <!--@if(in_array($k, $editor_config->enable_comment_component_grant))-->checked="checked"<!--@end-->/> <label for="comment_component_{$k}">{$v->title}</label>
<!--@end-->
</td>
</tr>
</tbody>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span>
</div> </div>

View file

@ -3,74 +3,70 @@
<h1 class="h1">{$component->title} ver. {$component->version}</h1> <h1 class="h1">{$component->title} ver. {$component->version}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><div>{$lang->component_author}</div></th>
<th scope="row"><div>{$lang->component_author}</div></th> <td>
<td> <!--@foreach($component->author as $author)-->
<!--@foreach($component->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 />
{$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 /> <!--@end-->
<!--@end--> </tr>
</tr>
<!--@if($component->homepage)--> <!--@if($component->homepage)-->
<tr> <tr>
<th scope="row"><div>{$lang->homepage}</div></th> <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> <td class="blue"><a href="{$component->homepage}" onclick="window.open(this.href);return false;">{$component->homepage}</a></td>
</tr><!--@end--> </tr><!--@end-->
<tr> <tr>
<th scope="row"><div>{$lang->regdate}</div></th> <th scope="row"><div>{$lang->regdate}</div></th>
<td>{zdate(str_replace('-',"",$component->date), 'Y-m-d')}</td> <td>{zdate(str_replace('-',"",$component->date), 'Y-m-d')}</td>
</tr> </tr>
<!--@if($component->license || $component->license_link)--> <!--@if($component->license || $component->license_link)-->
<tr> <tr>
<th scope="row"><div>{$lang->component_license}</div></th> <th scope="row"><div>{$lang->component_license}</div></th>
<td> <td>
{nl2br(trim($component->license))} {nl2br(trim($component->license))}
<!--@if($component->license_link)--> <!--@if($component->license_link)-->
<p><a href="{$component->license_link}" onclick="window.close(); return false;">{$component->license_link}</a></p> <p><a href="{$component->license_link}" onclick="window.close(); return false;">{$component->license_link}</a></p>
<!--@end--> <!--@end-->
</td> </td>
</tr><!--@end--> </tr><!--@end-->
<!--@if($component->description)--> <!--@if($component->description)-->
<tr> <tr>
<th scope="row"><div>{$lang->component_description}</div></th> <th scope="row"><div>{$lang->component_description}</div></th>
<td>{nl2br(trim($component->description))}</td> <td>{nl2br(trim($component->description))}</td>
</tr><!--@end--> </tr><!--@end-->
</table> </table>
</div>
<!--@if($component->history)--> <!--@if($component->history)-->
<h1 class="h1">{$lang->component_history}</h1> <h1 class="h1">{$lang->component_history}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <!--@foreach($component->history as $history)-->
<!--@foreach($component->history as $history)--> <tr class="row{$cycle_idx}">
<tr class="row{$cycle_idx}"> <th scope="row"><div>
<th scope="row"><div> {$history->version}<br />
{$history->version}<br /> {zdate($history->date, 'Y-m-d')}
{zdate($history->date, 'Y-m-d')} </div></th>
</div></th> <td >
<td > <!--@foreach($history->author as $author)-->
<!--@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>
<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-->
<!--@endforeach--> <!--@if($history->description)-->
<!--@if($history->description)--> <p>{nl2br(trim($history->description))}</p>
<p>{nl2br(trim($history->description))}</p> <!--@endif-->
<!--@endif--> <!--@if($history->logs)-->
<!--@if($history->logs)--> <ul>
<ul> <!--@foreach($history->logs as $log)-->
<!--@foreach($history->logs as $log)--> <!--@if($log->link)-->
<!--@if($log->link)--> <li><a href="{$log->link}" onclick="window.close(); return false;">{$log->text}</a></li>
<li><a href="{$log->link}" onclick="window.close(); return false;">{$log->text}</a></li> <!--@else-->
<!--@else--> <li>{$log->text}</li>
<li>{$log->text}</li> <!--@endif-->
<!--@endif--> <!--@endforeach-->
<!--@endforeach--> </ul>
</ul> <!--@endif-->
<!--@endif--> </td>
</td> </tr>
</tr> <!--@endforeach-->
<!--@endforeach--> </table>
</table>
</div>
<!--@endif--> <!--@endif-->

View file

@ -7,56 +7,54 @@
<form ruleset="insertConfig" action="./" method="post"> <form ruleset="insertConfig" action="./" method="post">
<input type="hidden" name="module" value="file" /> <input type="hidden" name="module" value="file" />
<input type="hidden" name="act" value="procFileAdminInsertConfig" /> <input type="hidden" name="act" value="procFileAdminInsertConfig" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="col">{$lang->allow_outlink}</th>
<td class="text">
<select name="allow_outlink">
<option value="Y"<!--@if($config->allow_outlink=='Y')--> selected="selected"<!--@end-->>{$lang->enable}</option>
<option value="N"<!--@if($config->allow_outlink=='N')--> selected="selected"<!--@end-->>{$lang->disable}</option>
</select>
<p>{$lang->about_allow_outlink}</p>
</td>
</tr>
<tr> <tr>
<th scope="col">{$lang->allow_outlink_format}</th> <th scope="col">{$lang->allow_outlink}</th>
<td class="text"> <td class="text">
<input type="text" name="allow_outlink_format" value="{$config->allow_outlink_format}" /> <select name="allow_outlink">
<p>{$lang->about_allow_outlink_format}</p> <option value="Y"<!--@if($config->allow_outlink=='Y')--> selected="selected"<!--@end-->>{$lang->enable}</option>
</td> <option value="N"<!--@if($config->allow_outlink=='N')--> selected="selected"<!--@end-->>{$lang->disable}</option>
</tr> </select>
<tr> <p>{$lang->about_allow_outlink}</p>
<th scope="col">{$lang->allow_outlink_site}</th> </td>
<td class="text"> </tr>
<textarea name="allow_outlink_site" rows="8" cols="42">{$config->allow_outlink_site}</textarea> <tr>
<p>{$lang->about_allow_outlink_site}</p> <th scope="col">{$lang->allow_outlink_format}</th>
</td> <td class="text">
</tr> <input type="text" name="allow_outlink_format" value="{$config->allow_outlink_format}" />
<tr> <p>{$lang->about_allow_outlink_format}</p>
<th scope="col">{$lang->allowed_filesize}</th> </td>
<td class="text"> </tr>
<input type="text" name="allowed_filesize" value="{$config->allowed_filesize}" size="3" />MB <tr>
<p>{$lang->about_allowed_filesize}</p> <th scope="col">{$lang->allow_outlink_site}</th>
</td> <td class="text">
</tr> <textarea name="allow_outlink_site" rows="8" cols="42">{$config->allow_outlink_site}</textarea>
<tr> <p>{$lang->about_allow_outlink_site}</p>
<th scope="col">{$lang->allowed_attach_size}</th> </td>
<td class="text"> </tr>
<input type="text" name="allowed_attach_size" value="{$config->allowed_attach_size}" size="3" />MB <tr>
/ {ini_get('upload_max_filesize')} <th scope="col">{$lang->allowed_filesize}</th>
<p>{$lang->about_allowed_attach_size}</p> <td class="text">
</td> <input type="text" name="allowed_filesize" value="{$config->allowed_filesize}" size="3" />MB
</tr> <p>{$lang->about_allowed_filesize}</p>
<tr> </td>
<th scope="col">{$lang->allowed_filetypes}</th> </tr>
<td class="text"> <tr>
<input type="text" name="allowed_filetypes" value="{$config->allowed_filetypes}" /> <th scope="col">{$lang->allowed_attach_size}</th>
<p>{$lang->about_allowed_filetypes}</p> <td class="text">
</td> <input type="text" name="allowed_attach_size" value="{$config->allowed_attach_size}" size="3" />MB
</tr> / {ini_get('upload_max_filesize')}
</table> <p>{$lang->about_allowed_attach_size}</p>
</div> </td>
</tr>
<tr>
<th scope="col">{$lang->allowed_filetypes}</th>
<td class="text">
<input type="text" name="allowed_filetypes" value="{$config->allowed_filetypes}" />
<p>{$lang->about_allowed_filetypes}</p>
</td>
</tr>
</table>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
</div> </div>

View file

@ -9,111 +9,109 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
<form id="fo_list" action="./" method="post"> <form id="fo_list" action="./" method="post">
<input type="hidden" name="module" value="file" /> <input type="hidden" name="module" value="file" />
<div class="x_page-header"> <div class="x_page-header">
<h1>{$lang->file}</h1> <h1>{$lang->file}</h1>
</div> </div>
<div class="table"> <div class="x_tabbable">
<div class="x_tabbable"> <ul class="x_nav x_nav-tabs">
<ul class="x_nav x_nav-tabs"> <li <!--@if($search_keyword == '')-->class="x_active"<!--@end-->><a href="{getUrl('', 'module', 'admin', 'act', 'dispFileAdminList')}">All</a></li>
<li <!--@if($search_keyword == '')-->class="x_active"<!--@end-->><a href="{getUrl('', 'module', 'admin', 'act', 'dispFileAdminList')}">All</a></li> <li <!--@if($search_target == 'isvalid' && $search_keyword == 'Y')-->class="x_active"<!--@end-->><a href="{getUrl('search_target','isvalid','search_keyword','Y')}">{$lang->is_valid}</a></li>
<li <!--@if($search_target == 'isvalid' && $search_keyword == 'Y')-->class="x_active"<!--@end-->><a href="{getUrl('search_target','isvalid','search_keyword','Y')}">{$lang->is_valid}</a></li> <li <!--@if($search_target == 'isvalid' && $search_keyword == 'N')-->class="x_active"<!--@end-->><a href="{getUrl('search_target','isvalid','search_keyword','N')}">{$lang->is_stand_by}</a></li>
<li <!--@if($search_target == 'isvalid' && $search_keyword == 'N')-->class="x_active"<!--@end-->><a href="{getUrl('search_target','isvalid','search_keyword','N')}">{$lang->is_stand_by}</a></li> </ul>
</ul> </div>
</div> <table id="fileListTable" class="x_table x_table-striped x_table-hover">
<table width="100%" id="fileListTable" class="x_table x_table-striped x_table-hover"> <caption>
<caption> <!--@if($search_keyword == '')-->
<!--@if($search_keyword == '')--> All
All <!--@elseif($search_target == 'isvalid' && $search_keyword == 'Y')-->
<!--@elseif($search_target == 'isvalid' && $search_keyword == 'Y')--> {$lang->is_valid}
{$lang->is_valid} <!--@elseif($search_target == 'isvalid' && $search_keyword == 'N')-->
<!--@elseif($search_target == 'isvalid' && $search_keyword == 'N')--> {$lang->is_stand_by}
{$lang->is_stand_by} <!--@end-->
<!--@end--> ({number_format($total_count)})
({number_format($total_count)})
<span class="x_pull-right"><a href="#listManager" class="x_btn modalAnchor" onclick="getFileList();">{$lang->file_manager}...</a></span>
</caption>
<thead>
<tr>
<th scope="col" class="text">{$lang->file}</th>
<th scope="col" class="nowr">{$lang->file_size}</th>
<th scope="col" class="nowr">{$lang->cmd_download}</th>
<th scope="col" class="nowr">{$lang->author}</th>
<th scope="col" class="nowr">{$lang->date}</th>
<th scope="col" class="nowr">{$lang->ipaddress}</th>
<th scope="col" class="nowr">{$lang->status}</th>
<th scope="col"><input type="checkbox" data-name="cart" title="Check All" /></th>
</tr>
</thead>
<tfoot>
<tr>
<th scope="col" class="text">{$lang->file}</th>
<th scope="col" class="nowr">{$lang->file_size}</th>
<th scope="col" class="nowr">{$lang->cmd_download}</th>
<th scope="col" class="nowr">{$lang->author}</th>
<th scope="col" class="nowr">{$lang->date}</th>
<th scope="col" class="nowr">{$lang->ipaddress}</th>
<th scope="col" class="nowr">{$lang->status}</th>
<th scope="col"><input type="checkbox" data-name="cart" title="Check All" /></th>
</tr>
</tfoot>
<tbody>
<!--@foreach($file_list as $no => $val)-->
<!-- one document start -->
<!--@if($val->upload_target_srl != $cur_upload_target_srl)-->
<!--@if($val->upload_target_type == 'com')-->
{@ $document_srl = $val->target_document_srl}
{@ $move_uri = getUrl('', 'document_srl', $document_srl).'#comment_'.$val->upload_target_srl}
<!--@elseif($val->upload_target_type == 'doc')-->
{@ $document_srl = $val->upload_target_srl}
{@ $move_uri = getUrl('', 'document_srl', $document_srl)}
<!--@end-->
{@ $cur_upload_target_srl = $val->upload_target_srl}
<tr>
<th colspan="8" class="text" scope="col">
<!--@if(!$val->upload_target_type)-->
<!--@if($val->isvalid=='Y')-->
{$lang->is_valid}
<!--@else-->
{$lang->is_stand_by}
<!--@end-->
<!--@else-->
<!--@if($val->upload_target_type == 'com')-->[{$lang->comment}] <!--@end-->
<!--@if($val->upload_target_type == 'mod')-->[{$lang->module}] <!--@end-->
<!--@if($val->upload_target_type == 'doc' && $document_list[$document_srl] && $document_list[$document_srl]->get('module_srl') == $document_list[$document_srl]->get('member_srl'))-->[{$lang->cmd_temp_save}] <!--@end-->
<!--@if($val->upload_target_type == 'doc' && $document_list[$document_srl] && $document_list[$document_srl]->get('module_srl') == 0)-->[{$lang->cmd_trash}] <!--@end-->
<a href="{getUrl('', 'mid', $module_list[$val->module_srl]->mid)}" target="_blank">{$module_list[$val->module_srl]->browser_title}</a>
<!--@if($document_list[$document_srl] && ($val->upload_target_type == 'doc' || $val->upload_target_type == 'com'))-->
- <!--@if($document_list[$document_srl]->get('module_srl') != $document_list[$document_srl]->get('member_srl'))--><a href="{$move_uri}" target="_blank">{$document_list[$document_srl]->getTitle()}</a><!--@else-->{$document_list[$document_srl]->getTitle()}<!--@end-->
<!--@end-->
<!--@end-->
</th>
</tr>
<!--@endif-->
<!-- one document end -->
<tr>
<td class="text"><a href="{$val->download_url}">{htmlspecialchars($val->source_filename)}</a></td>
<td class="nowr">{FileHandler::filesize($val->file_size)}</td>
<td class="nowr">{$val->download_count}</td>
<td class="nowr">
<!--@if($val->upload_target_type == 'doc' && $document_list[$document_srl])-->
<a href="#popup_menu_area" class="member_{$document_list[$document_srl]->get('member_srl')}">{$document_list[$document_srl]->getNickName()}</a>
<!--@elseif($val->upload_target_type == 'com' && $comment_list[$val->upload_target_srl])-->
<a href="#popup_menu_area" class="member_{$comment_list[$val->upload_target_srl]->get('member_srl')}">{$comment_list[$val->upload_target_srl]->getNickName()}</a>
<!--@end-->
</td>
<td class="nowr">{zdate($val->regdate,"Y-m-d H:i")}</td>
<td class="nowr"><a href="{getUrl('search_target','ipaddress','search_keyword',$val->ipaddress)}">{$val->ipaddress}</a></td>
<td class="nowr"><!--@if($val->isvalid=='Y')-->{$lang->is_valid}<!--@else-->{$lang->is_stand_by}<!--@end--></td>
<td>
<input type="checkbox" name="cart" value="{$val->file_srl}" />
</td>
</tr>
<!--@endforeach-->
</tbody>
</table>
<div class="btnArea">
<span class="x_pull-right"><a href="#listManager" class="x_btn modalAnchor" onclick="getFileList();">{$lang->file_manager}...</a></span> <span class="x_pull-right"><a href="#listManager" class="x_btn modalAnchor" onclick="getFileList();">{$lang->file_manager}...</a></span>
</div> </caption>
<thead>
<tr>
<th scope="col" class="text">{$lang->file}</th>
<th scope="col" class="nowr">{$lang->file_size}</th>
<th scope="col" class="nowr">{$lang->cmd_download}</th>
<th scope="col" class="nowr">{$lang->author}</th>
<th scope="col" class="nowr">{$lang->date}</th>
<th scope="col" class="nowr">{$lang->ipaddress}</th>
<th scope="col" class="nowr">{$lang->status}</th>
<th scope="col"><input type="checkbox" data-name="cart" title="Check All" /></th>
</tr>
</thead>
<tfoot>
<tr>
<th scope="col" class="text">{$lang->file}</th>
<th scope="col" class="nowr">{$lang->file_size}</th>
<th scope="col" class="nowr">{$lang->cmd_download}</th>
<th scope="col" class="nowr">{$lang->author}</th>
<th scope="col" class="nowr">{$lang->date}</th>
<th scope="col" class="nowr">{$lang->ipaddress}</th>
<th scope="col" class="nowr">{$lang->status}</th>
<th scope="col"><input type="checkbox" data-name="cart" title="Check All" /></th>
</tr>
</tfoot>
<tbody>
<!--@foreach($file_list as $no => $val)-->
<!-- one document start -->
<!--@if($val->upload_target_srl != $cur_upload_target_srl)-->
<!--@if($val->upload_target_type == 'com')-->
{@ $document_srl = $val->target_document_srl}
{@ $move_uri = getUrl('', 'document_srl', $document_srl).'#comment_'.$val->upload_target_srl}
<!--@elseif($val->upload_target_type == 'doc')-->
{@ $document_srl = $val->upload_target_srl}
{@ $move_uri = getUrl('', 'document_srl', $document_srl)}
<!--@end-->
{@ $cur_upload_target_srl = $val->upload_target_srl}
<tr>
<th colspan="8" class="text" scope="col">
<!--@if(!$val->upload_target_type)-->
<!--@if($val->isvalid=='Y')-->
{$lang->is_valid}
<!--@else-->
{$lang->is_stand_by}
<!--@end-->
<!--@else-->
<!--@if($val->upload_target_type == 'com')-->[{$lang->comment}] <!--@end-->
<!--@if($val->upload_target_type == 'mod')-->[{$lang->module}] <!--@end-->
<!--@if($val->upload_target_type == 'doc' && $document_list[$document_srl] && $document_list[$document_srl]->get('module_srl') == $document_list[$document_srl]->get('member_srl'))-->[{$lang->cmd_temp_save}] <!--@end-->
<!--@if($val->upload_target_type == 'doc' && $document_list[$document_srl] && $document_list[$document_srl]->get('module_srl') == 0)-->[{$lang->cmd_trash}] <!--@end-->
<a href="{getUrl('', 'mid', $module_list[$val->module_srl]->mid)}" target="_blank">{$module_list[$val->module_srl]->browser_title}</a>
<!--@if($document_list[$document_srl] && ($val->upload_target_type == 'doc' || $val->upload_target_type == 'com'))-->
- <!--@if($document_list[$document_srl]->get('module_srl') != $document_list[$document_srl]->get('member_srl'))--><a href="{$move_uri}" target="_blank">{$document_list[$document_srl]->getTitle()}</a><!--@else-->{$document_list[$document_srl]->getTitle()}<!--@end-->
<!--@end-->
<!--@end-->
</th>
</tr>
<!--@endif-->
<!-- one document end -->
<tr>
<td class="text"><a href="{$val->download_url}">{htmlspecialchars($val->source_filename)}</a></td>
<td class="nowr">{FileHandler::filesize($val->file_size)}</td>
<td class="nowr">{$val->download_count}</td>
<td class="nowr">
<!--@if($val->upload_target_type == 'doc' && $document_list[$document_srl])-->
<a href="#popup_menu_area" class="member_{$document_list[$document_srl]->get('member_srl')}">{$document_list[$document_srl]->getNickName()}</a>
<!--@elseif($val->upload_target_type == 'com' && $comment_list[$val->upload_target_srl])-->
<a href="#popup_menu_area" class="member_{$comment_list[$val->upload_target_srl]->get('member_srl')}">{$comment_list[$val->upload_target_srl]->getNickName()}</a>
<!--@end-->
</td>
<td class="nowr">{zdate($val->regdate,"Y-m-d H:i")}</td>
<td class="nowr"><a href="{getUrl('search_target','ipaddress','search_keyword',$val->ipaddress)}">{$val->ipaddress}</a></td>
<td class="nowr"><!--@if($val->isvalid=='Y')-->{$lang->is_valid}<!--@else-->{$lang->is_stand_by}<!--@end--></td>
<td>
<input type="checkbox" name="cart" value="{$val->file_srl}" />
</td>
</tr>
<!--@endforeach-->
</tbody>
</table>
<div class="btnArea">
<span class="x_pull-right"><a href="#listManager" class="x_btn modalAnchor" onclick="getFileList();">{$lang->file_manager}...</a></span>
</div> </div>
</form> </form>

View file

@ -4,42 +4,40 @@
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" /> <input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" /> <input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
<h3 class="h3">{$lang->file}</h3> <h3 class="h3">{$lang->file}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row"><label for="allowed_filesize">{$lang->allowed_filesize}</label></th>
<td class="text">
<input type="text" name="allowed_filesize" id="allowed_filesize" value="{$file_config->allowed_filesize}" size="3" style="width:30px" /> MB
<p class="desc">{$lang->about_allowed_filesize}</p>
</td>
</tr>
<tr> <tr>
<th scope="row"><label for="allowed_attach_size">{$lang->allowed_attach_size}</label></th> <th scope="row"><label for="allowed_filesize">{$lang->allowed_filesize}</label></th>
<td class="text"> <td class="text">
<input type="text" name="allowed_attach_size" id="allowed_attach_size" value="{$file_config->allowed_attach_size}" size="3" style="width:30px" /> MB <input type="text" name="allowed_filesize" id="allowed_filesize" value="{$file_config->allowed_filesize}" size="3" style="width:30px" /> MB
/ {ini_get('upload_max_filesize')} <p class="desc">{$lang->about_allowed_filesize}</p>
<p class="desc">{$lang->about_allowed_attach_size}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="allowed_attach_size">{$lang->allowed_attach_size}</label></th>
<th scope="row"><label for="allowed_filetypes">{$lang->allowed_filetypes}</label></th> <td class="text">
<td class="text"> <input type="text" name="allowed_attach_size" id="allowed_attach_size" value="{$file_config->allowed_attach_size}" size="3" style="width:30px" /> MB
<input type="text" name="allowed_filetypes" id="allowed_filetypes" value="{$file_config->allowed_filetypes}" /> / {ini_get('upload_max_filesize')}
<p class="desc">{$lang->about_allowed_filetypes}</p> <p class="desc">{$lang->about_allowed_attach_size}</p>
</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row">{$lang->enable_download_group}</th> <th scope="row"><label for="allowed_filetypes">{$lang->allowed_filetypes}</label></th>
<td class="text"> <td class="text">
<!--@foreach($group_list as $k => $v)--> <input type="text" name="allowed_filetypes" id="allowed_filetypes" value="{$file_config->allowed_filetypes}" />
<input type="checkbox" class="checkbox" name="download_grant[]" value="{$v->group_srl}" id="grant_{$key}_{$v->group_srl}" <!--@if(in_array($v->group_srl, $file_config->download_grant))-->checked="checked"<!--@end-->/> <p class="desc">{$lang->about_allowed_filetypes}</p>
<label for="grant_{$key}_{$v->group_srl}">{$v->title}</label> </td>
&nbsp; </tr>
<!--@end--> <tr>
</td> <th scope="row">{$lang->enable_download_group}</th>
</tr> <td class="text">
</table> <!--@foreach($group_list as $k => $v)-->
</div> <input type="checkbox" class="checkbox" name="download_grant[]" value="{$v->group_srl}" id="grant_{$key}_{$v->group_srl}" <!--@if(in_array($v->group_srl, $file_config->download_grant))-->checked="checked"<!--@end-->/>
<label for="grant_{$key}_{$v->group_srl}">{$v->title}</label>
&nbsp;
<!--@end-->
</td>
</tr>
</table>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
</div> </div>

View file

@ -1,8 +1,7 @@
<load target="js/file_admin.js" usecdn="true" /> <load target="js/file_admin.js" usecdn="true" />
<h2 class="h2">{$lang->file} {$lang->cmd_management}</h2> <h2 class="h2">{$lang->file} {$lang->cmd_management}</h2>
<div class="cnb"> <p>
<ul> <a href="{getUrl('act','dispFileAdminList')}" class="active"|cond="$act=='dispFileAdminList'">{$lang->file_list}</a>
<li <!--@if($act=='dispFileAdminList')-->class="active"<!--@end-->><a href="{getUrl('act','dispFileAdminList')}">{$lang->file_list}</a></li> <i>|</i>
<li <!--@if($act=='dispFileAdminConfig')-->class="active"<!--@end-->><a href="{getUrl('act','dispFileAdminConfig')}">{$lang->cmd_module_config}</a></li> <a href="{getUrl('act','dispFileAdminConfig')}" class="active"|cond="$act=='dispFileAdminConfig'">{$lang->cmd_module_config}</a>
</ul> </p>
</div>

View file

@ -8,46 +8,44 @@
<input type="hidden" name="act" value="procIntegration_searchAdminInsertConfig" /> <input type="hidden" name="act" value="procIntegration_searchAdminInsertConfig" />
<input type="hidden" name="module" value="admin" /> <input type="hidden" name="module" value="admin" />
<input type="hidden" name="target_module_srl" id="target_module_srl" value="{$config->target_module_srl}" /> <input type="hidden" name="target_module_srl" id="target_module_srl" value="{$config->target_module_srl}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->sample_code}</th>
<td >
<textarea readonly="readonly" rows="8" cols="42">{$sample_code}</textarea>
<p>{$lang->about_sample_code}</p>
</td>
</tr>
<tr> <tr>
<th scope="row">{$lang->skin}</th> <th scope="row">{$lang->sample_code}</th>
<td> <td >
<select name="skin"> <textarea readonly="readonly" rows="8" cols="42">{$sample_code}</textarea>
<!--@foreach($skin_list as $key=>$val)--> <p>{$lang->about_sample_code}</p>
<option value="{$key}" <!--@if($config->skin==$key)-->selected="selected"<!--@end-->>{$val->title}</option> </td>
<!--@end--> </tr>
</select> <tr>
<p>{$lang->about_skin}</p> <th scope="row">{$lang->skin}</th>
</td> <td>
</tr> <select name="skin">
<tr> <!--@foreach($skin_list as $key=>$val)-->
<th scope="row">{$lang->target}</th> <option value="{$key}" <!--@if($config->skin==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<td> <!--@end-->
<select name="target"> </select>
<option value="include">{$lang->include_search_target}</option> <p>{$lang->about_skin}</p>
<option value="exclude" <!--@if($config->target=='exclude')-->selected="selected"<!--@end-->>{$lang->exclude_search_target}</option> </td>
</select> </tr>
<tr>
<select name="_target_module_srl" id="_target_module_srl" size="8" style="display:block;margin:10px 0;"></select> <th scope="row">{$lang->target}</th>
<td>
<a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module_srl')}" onclick="popopen(this.href, 'ModuleSelect');return false;" class="button blue"><span>{$lang->cmd_insert}</span></a> <select name="target">
<a href="#" onclick="midRemove('target_module_srl');return false;" class="button red"><span>{$lang->cmd_delete}</span></a> <option value="include">{$lang->include_search_target}</option>
<option value="exclude" <!--@if($config->target=='exclude')-->selected="selected"<!--@end-->>{$lang->exclude_search_target}</option>
<script> </select>
jQuery( function() { getModuleSrlList('target_module_srl'); } );
</script> <select name="_target_module_srl" id="_target_module_srl" size="8" style="display:block;margin:10px 0;"></select>
</td>
</tr> <a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module_srl')}" onclick="popopen(this.href, 'ModuleSelect');return false;" class="button blue"><span>{$lang->cmd_insert}</span></a>
</table> <a href="#" onclick="midRemove('target_module_srl');return false;" class="button red"><span>{$lang->cmd_delete}</span></a>
</div>
<script>
jQuery( function() { getModuleSrlList('target_module_srl'); } );
</script>
</td>
</tr>
</table>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
</div> </div>

View file

@ -8,134 +8,128 @@
<input type="hidden" name="act" value="procIntegration_searchAdminInsertSkin" /> <input type="hidden" name="act" value="procIntegration_searchAdminInsertSkin" />
<h3 class="h3">{$lang->skin_default_info}</h3> <h3 class="h3">{$lang->skin_default_info}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="row">{$lang->skin}</th>
<td >{$skin_info->title}</td>
</tr>
<tr> <tr>
<th scope="row">{$lang->skin_author}</th> <th scope="row">{$lang->skin}</th>
<td> <td >{$skin_info->title}</td>
<!--@foreach($skin_info->author as $author)--> </tr>
{$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>)<br /> <tr>
<!--@endforeach--> <th scope="row">{$lang->skin_author}</th>
</td> <td>
</tr> <!--@foreach($skin_info->author as $author)-->
<tr> {$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>)<br />
<th scope="row">{$lang->homepage}</th> <!--@endforeach-->
<td><a href="{$skin_info->homepage}" onclick="window.open(this.href);return false;">{$skin_info->homepage}</a>&nbsp;</td> </td>
</tr> </tr>
<tr> <tr>
<th scope="row">{$lang->date}</th> <th scope="row">{$lang->homepage}</th>
<td>{zdate($skin_info->date, 'Y-m-d')}</td> <td><a href="{$skin_info->homepage}" onclick="window.open(this.href);return false;">{$skin_info->homepage}</a>&nbsp;</td>
</tr> </tr>
<tr> <tr>
<th scope="row">{$lang->skin_license}</th> <th scope="row">{$lang->date}</th>
<td> <td>{zdate($skin_info->date, 'Y-m-d')}</td>
{nl2br(trim($skin_info->license))} </tr>
<!--@if($skin_info->license_link)--> <tr>
<p><a href="{$skin_info->license_link}" onclick="window.close(); return false;">{$skin_info->license_link}</a></p> <th scope="row">{$lang->skin_license}</th>
<!--@end--> <td>
&nbsp; {nl2br(trim($skin_info->license))}
</td> <!--@if($skin_info->license_link)-->
</tr> <p><a href="{$skin_info->license_link}" onclick="window.close(); return false;">{$skin_info->license_link}</a></p>
<tr> <!--@end-->
<th scope="row">{$lang->description}</th> &nbsp;
<td>{nl2br($skin_info->description)}</td> </td>
</tr> </tr>
</table> <tr>
</div> <th scope="row">{$lang->description}</th>
<td>{nl2br($skin_info->description)}</td>
</tr>
</table>
<h3 class="h3">{$lang->extra_vars}</h3> <h3 class="h3">{$lang->extra_vars}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr valign="top">
<tr valign="top"> <th scope="row">{$lang->colorset}</th>
<th scope="row">{$lang->colorset}</th> <td>
<td> <!--@foreach($skin_info->colorset as $key => $val)-->
<!--@foreach($skin_info->colorset as $key => $val)--> <!--@if($val->screenshot)-->
<!--@if($val->screenshot)--> {@ $_img_info = getImageSize($val->screenshot); $_height = $_img_info[1]+40; $_width = $_img_info[0]+20; $_talign = "center"; }
{@ $_img_info = getImageSize($val->screenshot); $_height = $_img_info[1]+40; $_width = $_img_info[0]+20; $_talign = "center"; } <!--@else-->
<!--@else--> {@ $_width = 200; $_height = 20; $_talign = "left"; }
{@ $_width = 200; $_height = 20; $_talign = "left"; }
<!--@end-->
<div style="float:left;text-align:{$_talign};margin-bottom:1em;width:{$_width}px;height:{$_height}px;margin-right:10px;">
<input type="radio" name="colorset" value="{$val->name}" id="colorset_{$key}" <!--@if($module_info->colorset==$val->name)-->checked="checked"<!--@end-->/>
<label for="colorset_{$key}">{$val->title}</label>
<!--@if($val->screenshot)-->
<br />
<img src="{$val->screenshot}" alt="{$val->title}" style="border:1px solid #888888;padding:2px;margin:2px;"/>
<!--@end-->
</div>
<!--@end--> <!--@end-->
</td> <div style="float:left;text-align:{$_talign};margin-bottom:1em;width:{$_width}px;height:{$_height}px;margin-right:10px;">
</tr> <input type="radio" name="colorset" value="{$val->name}" id="colorset_{$key}" <!--@if($module_info->colorset==$val->name)-->checked="checked"<!--@end-->/>
</table> <label for="colorset_{$key}">{$val->title}</label>
</div> <!--@if($val->screenshot)-->
<br />
<img src="{$val->screenshot}" alt="{$val->title}" style="border:1px solid #888888;padding:2px;margin:2px;"/>
<!--@end-->
</div>
<!--@end-->
</td>
</tr>
</table>
<!--@foreach($skin_info->extra_vars as $key => $val)--> <!--@foreach($skin_info->extra_vars as $key => $val)-->
<!--@if($val->group && ((!$group) || $group != $val->group))--> <!--@if($val->group && ((!$group) || $group != $val->group))-->
{@$group = $val->group} {@$group = $val->group}
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <caption>{$group}</caption>
<caption>{$group}</caption> <!--@end-->
<!--@end-->
<tr>
<tr> <th scope="row">{$val->title}</th>
<th scope="row">{$val->title}</th> <td >
<td > <!--@if($val->type=="text")-->
<!--@if($val->type=="text")--> <!--@if(!$val->value)-->{@ $val->value = $val->default}<!--@endif-->
<!--@if(!$val->value)-->{@ $val->value = $val->default}<!--@endif--> <input type="text" name="{$val->name}" value="{$val->value}" />
<input type="text" name="{$val->name}" value="{$val->value}" />
<!--@elseif($val->type=="textarea")-->
<!--@elseif($val->type=="textarea")--> <textarea name="{$val->name}" rows="8" cols="42">{$val->value}</textarea>
<textarea name="{$val->name}" rows="8" cols="42">{$val->value}</textarea>
<!--@elseif($val->type=="select")-->
<!--@elseif($val->type=="select")--> <select name="{$val->name}">
<select name="{$val->name}"> <!--@foreach($val->options as $k=>$v)-->
<!--@foreach($val->options as $k=>$v)--> <option value="{$v->value}" <!--@if($v->value == $val->value)-->selected="selected"<!--@end-->>{$v->title}</option>
<option value="{$v->value}" <!--@if($v->value == $val->value)-->selected="selected"<!--@end-->>{$v->title}</option>
<!--@end-->
</select>
<!--@elseif($val->type=="checkbox")-->
<!--@foreach($val->default as $k=>$v)-->
<span>
<input type="checkbox" name="{$val->name}[]" value="{$v}" id="ch_{$key}_{$k}" <!--@if(in_array($v, $val->value))-->checked="checked"<!--@end--> class="checkbox" />
<label for="ch_{$key}_{$k}">{$v}</label>
</span>
<!--@end--> <!--@end-->
</select>
<!--@elseif($val->type=="radio")-->
<!--@foreach($val->default as $k=>$v)--> <!--@elseif($val->type=="checkbox")-->
<span> <!--@foreach($val->default as $k=>$v)-->
<input type="radio" name="{$val->name}" value="{$v}" id="ch_{$key}_{$k}" <!--@if($v==$val->value)-->checked="checked"<!--@end-->/> <span>
<label for="ch_{$key}_{$k}">{$v}</label> <input type="checkbox" name="{$val->name}[]" value="{$v}" id="ch_{$key}_{$k}" <!--@if(in_array($v, $val->value))-->checked="checked"<!--@end--> class="checkbox" />
</span> <label for="ch_{$key}_{$k}">{$v}</label>
<!--@end--> </span>
<!--@elseif($val->type=="image")-->
<!--@if($val->value)-->
<div>
<img src="{$val->value}" /><br />
<input type="checkbox" name="del_{$val->name}" value="Y" id="del_{$val->name}" class="checkbox" />
<label for="del_{$val->name}">{$lang->cmd_delete}</label>
</div>
<!--@end-->
<input type="file" name="{$val->name}" value="" />
<!--@end--> <!--@end-->
<!--@if($val->description)--> <!--@elseif($val->type=="radio")-->
<p>{nl2br(trim($val->description))}</p> <!--@foreach($val->default as $k=>$v)-->
<span>
<input type="radio" name="{$val->name}" value="{$v}" id="ch_{$key}_{$k}" <!--@if($v==$val->value)-->checked="checked"<!--@end-->/>
<label for="ch_{$key}_{$k}">{$v}</label>
</span>
<!--@end--> <!--@end-->
</td>
</tr> <!--@elseif($val->type=="image")-->
<!--@end--> <!--@if($val->value)-->
<div>
<!--@if($group)--> <img src="{$val->value}" /><br />
</table> <input type="checkbox" name="del_{$val->name}" value="Y" id="del_{$val->name}" class="checkbox" />
</div> <label for="del_{$val->name}">{$lang->cmd_delete}</label>
</div>
<!--@end-->
<input type="file" name="{$val->name}" value="" />
<!--@end-->
<!--@if($val->description)-->
<p>{nl2br(trim($val->description))}</p>
<!--@end-->
</td>
</tr>
<!--@end-->
<!--@if($group)-->
</table>
<!--@end--> <!--@end-->
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>

View file

@ -11,30 +11,26 @@ var addLang = '{$lang->cmd_insert}';
<input type="hidden" name="layout" value="{$layout->layout}" /> <input type="hidden" name="layout" value="{$layout->layout}" />
<input type="hidden" name="act" value="procLayoutAdminCopyLayout" /> <input type="hidden" name="act" value="procLayoutAdminCopyLayout" />
<input type="hidden" name="layout_srl" value="{$layout->layout_srl}" /> <input type="hidden" name="layout_srl" value="{$layout->layout_srl}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row">{$lang->layout_name}</th>
<th scope="row">{$lang->layout_name}</th> <td>{$layout->title}</td>
<td>{$layout->title}</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->title}</th>
<th scope="row">{$lang->title}</th> <td>{$layout->layout_title}</td>
<td>{$layout->layout_title}</td> </tr>
</tr> </table>
</table> <table width="100%" border="1" cellspacing="0" id="inputTable">
</div> <tr>
<div class="table"> <th scope="col"><div>{$lang->title}<div></th>
<table width="100%" border="1" cellspacing="0" id="inputTable"> <th scope="col"><div>{$lang->cmd_insert}</div></th>
<tr> </tr>
<th scope="col"><div>{$lang->title}<div></th> <tr>
<th scope="col"><div>{$lang->cmd_insert}</div></th> <td><input type="text" name="title[]" size="50" /></td>
</tr> <td><span class="btn"><input type="button" value="{$lang->cmd_insert}" onclick="addLayoutCopyInputbox()" /></span></td>
<tr> </tr>
<td><input type="text" name="title[]" size="50" /></td> </table>
<td><span class="btn"><input type="button" value="{$lang->cmd_insert}" onclick="addLayoutCopyInputbox()" /></span></td>
</tr>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
</div> </div>

View file

@ -2,7 +2,7 @@
<div class="xm"> <div class="xm">
<h2 class="h2">{$lang->member_info}</h2> <h2 class="h2">{$lang->member_info}</h2>
<div class="table even"> <div class="table even">
<table width="100%" border="1" cellspacing="0"> <table class="x_table x_table-striped x_table-hover">
<tr loop="$displayDatas => $item"> <tr loop="$displayDatas => $item">
<th scope="row" >{$item->title} <em cond="$item->required || $item->mustRequired">*</em></th> <th scope="row" >{$item->title} <em cond="$item->required || $item->mustRequired">*</em></th>
<td class="text">{$item->value}</td> <td class="text">{$item->value}</td>

View file

@ -1,7 +1,7 @@
<include target="./common_header.html" /> <include target="./common_header.html" />
<h1 class="h1">{$member_title = $lang->cmd_view_own_document }</h1> <h1 class="h1">{$member_title = $lang->cmd_view_own_document }</h1>
<div class="table even"> <div class="table even">
<table width="100%" border="1" cellspacing="0"> <table class="x_table x_table-striped x_table-hover">
<caption> <caption>
Total: {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)} Total: {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}
<span class="side"> <span class="side">

View file

@ -1,7 +1,7 @@
<include target="./common_header.html" /> <include target="./common_header.html" />
<h1 class="h1">{$lang->member_info}</h1> <h1 class="h1">{$lang->member_info}</h1>
<div class="table even"> <div class="table even">
<table width="100%" border="1" cellspacing="0"> <table class="x_table x_table-striped x_table-hover">
<tr loop="$displayDatas => $item"> <tr loop="$displayDatas => $item">
<th scope="row" >{$item->title} <em cond="$item->required || $item->mustRequired">*</em></th> <th scope="row" >{$item->title} <em cond="$item->required || $item->mustRequired">*</em></th>
<td class="text">{$item->value}</td> <td class="text">{$item->value}</td>

View file

@ -1,7 +1,7 @@
<include target="./common_header.html" /> <include target="./common_header.html" />
<h1 class="h1">{$member_title = $lang->cmd_view_saved_document}</h1> <h1 class="h1">{$member_title = $lang->cmd_view_saved_document}</h1>
<div class="table even"> <div class="table even">
<table width="100%" border="1" cellspacing="0"> <table class="x_table x_table-striped x_table-hover">
<caption>Total: {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption> <caption>Total: {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<thead> <thead>
<tr> <tr>

View file

@ -1,7 +1,7 @@
<include target="./common_header.html" /> <include target="./common_header.html" />
<h1 class="h1">{$member_title = $lang->cmd_view_scrapped_document}</h1> <h1 class="h1">{$member_title = $lang->cmd_view_scrapped_document}</h1>
<div class="table even"> <div class="table even">
<table width="100%" border="1" cellspacing="0"> <table class="x_table x_table-striped x_table-hover">
<caption>Total: {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption> <caption>Total: {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<thead> <thead>
<tr> <tr>

View file

@ -6,90 +6,88 @@
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}"> <div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p> <p>{$XE_VALIDATOR_MESSAGE}</p>
</div> </div>
<form action="" class="form" method="post"> <form action="" method="post">
<div class="x_page-header"> <div class="x_page-header">
<h1>{$lang->user_list}</h1> <h1>{$lang->user_list}</h1>
</div> </div>
<div> <p>
<div class="cnb"> <a href="{getUrl('filter_type', '', 'page', '')}" class="active"|cond="$filter_type==''">{$lang->cmd_show_all_member}</a>
<a href="{getUrl('filter_type', '', 'page', '')}" class="active"|cond="$filter_type==''">{$lang->cmd_show_all_member}</a> <i>|</i>
<i>|</i> <a href="{getUrl('filter_type', 'super_admin', 'page', '')}" class="active"|cond="$filter_type==super_admin">{$lang->cmd_show_super_admin_member}</a>
<a href="{getUrl('filter_type', 'super_admin', 'page', '')}" class="active"|cond="$filter_type==super_admin">{$lang->cmd_show_super_admin_member}</a> <i>|</i>
<i>|</i> <a href="{getUrl('filter_type', 'enable', 'page', '')}" class="active"|cond="$filter_type==enable">{$lang->approval}</a>
<a href="{getUrl('filter_type', 'enable', 'page', '')}" class="active"|cond="$filter_type==enable">{$lang->approval}</a> <i>|</i>
<i>|</i> <a href="{getUrl('filter_type', 'disable', 'page', '')}" class="active"|cond="$filter_type==disable">{$lang->denied}</a>
<a href="{getUrl('filter_type', 'disable', 'page', '')}" class="active"|cond="$filter_type==disable">{$lang->denied}</a> </p>
</div> <div class="x_clearfix" style="margin-bottom:-48px">
<div class="x_clearfix" style="margin-bottom:-48px">
<div class="x_pull-right x_btn-group"> <div class="x_pull-right x_btn-group">
<a class="x_btn x_btn-inverse" href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInsert')}">{$lang->cmd_make}</a> <a class="x_btn x_btn-inverse" href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInsert')}">{$lang->cmd_make}</a>
<a href="#listManager" class="modalAnchor _member x_btn">{$lang->cmd_selected_user_manage}...</a> <a href="#listManager" class="modalAnchor _member x_btn">{$lang->cmd_selected_user_manage}...</a>
</div> </div>
</div> </div>
<table class="_memberList x_table x_table-striped x_table-hover"> <table class="_memberList x_table x_table-striped x_table-hover">
<caption>{$filter_type_title}({$total_count})</caption> <caption>{$filter_type_title}({$total_count})</caption>
<thead> <thead>
<tr> <tr>
<th scope="col" class="nowr">{$lang->email}</th> <th scope="col" class="nowr">{$lang->email}</th>
<th scope="col" class="nowr" loop="$usedIdentifiers=>$name,$title">{$title}</th> <th scope="col" class="nowr" loop="$usedIdentifiers=>$name,$title">{$title}</th>
<th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminList', 'sort_index', 'regdate', 'sort_order', ($sort_order == 'asc') ? 'desc' : 'asc')}">{$lang->signup_date}<block cond="$sort_index == 'regdate'"> <em cond="$sort_order=='asc'"></em><em cond="$sort_order != 'asc'"></em></block></a></th> <th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminList', 'sort_index', 'regdate', 'sort_order', ($sort_order == 'asc') ? 'desc' : 'asc')}">{$lang->signup_date}<block cond="$sort_index == 'regdate'"> <em cond="$sort_order=='asc'"></em><em cond="$sort_order != 'asc'"></em></block></a></th>
<th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminList', 'sort_index', 'last_login', 'sort_order', ($sort_order == 'asc') ? 'desc' : 'asc')}">{$lang->last_login}<block cond="$sort_index == 'last_login'"> <em cond="$sort_order=='asc'"></em><em cond="$sort_order != 'asc'"></em></block></a></th> <th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminList', 'sort_index', 'last_login', 'sort_order', ($sort_order == 'asc') ? 'desc' : 'asc')}">{$lang->last_login}<block cond="$sort_index == 'last_login'"> <em cond="$sort_order=='asc'"></em><em cond="$sort_order != 'asc'"></em></block></a></th>
<th scope="col">{$lang->member_group}</th> <th scope="col">{$lang->member_group}</th>
<th scope="col" class="nowr">{$lang->status}</th> <th scope="col" class="nowr">{$lang->status}</th>
<th scope="col" class="nowr">{$lang->cmd_view}</th> <th scope="col" class="nowr">{$lang->cmd_view}</th>
<th scope="col" class="nowr">{$lang->cmd_modify}...</th> <th scope="col" class="nowr">{$lang->cmd_modify}...</th>
<th scope="col"> <th scope="col">
<input type="checkbox" title="Check All" data-name="user" /> <input type="checkbox" title="Check All" data-name="user" />
</th> </th>
</tr> </tr>
</thead> </thead>
<tfoot> <tfoot>
<tr> <tr>
<th scope="col" class="nowr">{$lang->email}</th> <th scope="col" class="nowr">{$lang->email}</th>
<th scope="col" class="nowr" loop="$usedIdentifiers=>$name,$title">{$title}</th> <th scope="col" class="nowr" loop="$usedIdentifiers=>$name,$title">{$title}</th>
<th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminList', 'sort_index', 'regdate', 'sort_order', ($sort_order == 'asc') ? 'desc' : 'asc')}">{$lang->signup_date}<block cond="$sort_index == 'regdate'"> <em cond="$sort_order=='asc'"></em><em cond="$sort_order != 'asc'"></em></block></a></th> <th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminList', 'sort_index', 'regdate', 'sort_order', ($sort_order == 'asc') ? 'desc' : 'asc')}">{$lang->signup_date}<block cond="$sort_index == 'regdate'"> <em cond="$sort_order=='asc'"></em><em cond="$sort_order != 'asc'"></em></block></a></th>
<th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminList', 'sort_index', 'last_login', 'sort_order', ($sort_order == 'asc') ? 'desc' : 'asc')}">{$lang->last_login}<block cond="$sort_index == 'last_login'"> <em cond="$sort_order=='asc'"></em><em cond="$sort_order != 'asc'"></em></block></a></th> <th scope="col" class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminList', 'sort_index', 'last_login', 'sort_order', ($sort_order == 'asc') ? 'desc' : 'asc')}">{$lang->last_login}<block cond="$sort_index == 'last_login'"> <em cond="$sort_order=='asc'"></em><em cond="$sort_order != 'asc'"></em></block></a></th>
<th scope="col">{$lang->member_group}</th> <th scope="col">{$lang->member_group}</th>
<th scope="col" class="nowr">{$lang->status}</th> <th scope="col" class="nowr">{$lang->status}</th>
<th scope="col class="nowr"">{$lang->cmd_view}</th> <th scope="col class="nowr"">{$lang->cmd_view}</th>
<th scope="col" class="nowr">{$lang->cmd_modify}...</th> <th scope="col" class="nowr">{$lang->cmd_modify}...</th>
<th scope="col"> <th scope="col">
<input type="checkbox" title="Check All" data-name="user" /> <input type="checkbox" title="Check All" data-name="user" />
</th> </th>
</tr> </tr>
</tfoot> </tfoot>
<tbody> <tbody>
<tr loop="$member_list=>$no,$member_info"> <tr loop="$member_list=>$no,$member_info">
{@$member_info = get_object_vars($member_info)} {@$member_info = get_object_vars($member_info)}
<td class="nowr"> <td class="nowr">
<a href="#popup_menu_area" class="cMenu member_{$member_info['member_srl']}">Info</a> <a href="#popup_menu_area" class="cMenu member_{$member_info['member_srl']}">Info</a>
<span class="masked">{getEncodeEmailAddress($member_info['email_address'])}</span> <span class="masked">{getEncodeEmailAddress($member_info['email_address'])}</span>
</td> </td>
{@ $member_info['group_list'] = implode(', ', $member_info['group_list'])} {@ $member_info['group_list'] = implode(', ', $member_info['group_list'])}
<td class="nowr" loop="$usedIdentifiers=>$name,$title">{$member_info[$name]}</td> <td class="nowr" loop="$usedIdentifiers=>$name,$title">{$member_info[$name]}</td>
<td class="nowr">{zdate($member_info['regdate'], 'Y-m-d')}</td> <td class="nowr">{zdate($member_info['regdate'], 'Y-m-d')}</td>
<td class="nowr">{zdate($member_info['last_login'], 'Y-m-d')}</td> <td class="nowr">{zdate($member_info['last_login'], 'Y-m-d')}</td>
<td>{$member_info['group_list']}&nbsp;</td> <td>{$member_info['group_list']}&nbsp;</td>
{@ $lang_denied = ($member_info['denied'] == 'N')?$lang->approval:$lang->denied} {@ $lang_denied = ($member_info['denied'] == 'N')?$lang->approval:$lang->denied}
<td class="nowr">{$lang_denied}</td> <td class="nowr">{$lang_denied}</td>
<td class="nowr"> <td class="nowr">
<a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInfo', 'member_srl', $member_info['member_srl'])}">{$lang->cmd_view}</a> <a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInfo', 'member_srl', $member_info['member_srl'])}">{$lang->cmd_view}</a>
</td> </td>
<td class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInsert', 'member_srl', $member_info['member_srl'])}">{$lang->cmd_modify}...</a></td> <td class="nowr"><a href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInsert', 'member_srl', $member_info['member_srl'])}">{$lang->cmd_modify}...</a></td>
{@$used_values = ''} {@$used_values = ''}
<!--@foreach($usedIdentifiers as $name=>$title)--> <!--@foreach($usedIdentifiers as $name=>$title)-->
{@$used_values .= "\t".$member_info[$name]} {@$used_values .= "\t".$member_info[$name]}
<!--@end--> <!--@end-->
<td><input type="checkbox" name="user" value="{$member_info['member_srl']."\t".$member_info['email_address'].$used_values."\t".$member_info['group_list']."\t".$lang_denied}" disabled="disabled"|cond="$member_info['is_admin'] == 'Y'"/></td> <td><input type="checkbox" name="user" value="{$member_info['member_srl']."\t".$member_info['email_address'].$used_values."\t".$member_info['group_list']."\t".$lang_denied}" disabled="disabled"|cond="$member_info['is_admin'] == 'Y'"/></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
<div class="x_clearfix"> <div class="x_clearfix">
<div class="x_pull-right x_btn-group"> <div class="x_pull-right x_btn-group">
<a class="x_btn x_btn-inverse" href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInsert')}">{$lang->cmd_make}</a> <a class="x_btn x_btn-inverse" href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInsert')}">{$lang->cmd_make}</a>
<a href="#listManager" class="modalAnchor _member x_btn">{$lang->cmd_selected_user_manage}...</a> <a href="#listManager" class="modalAnchor _member x_btn">{$lang->cmd_selected_user_manage}...</a>
</div> </div>
</div> </div>
</form> </form>
<div class="x_modal" id="listManager"> <div class="x_modal" id="listManager">

View file

@ -9,32 +9,30 @@
</form> </form>
<!-- 목록 --> <!-- 목록 -->
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->no}</th>
<th scope="col">{$lang->no}</th> <th scope="col" >{$lang->title}</th>
<th scope="col" >{$lang->title}</th> <th scope="col">{$lang->regdate}</th>
<th scope="col">{$lang->regdate}</th> <th scope="col">&nbsp;</th>
<th scope="col">&nbsp;</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> <!--@foreach($menu_list as $no => $val)-->
<!--@foreach($menu_list as $no => $val)--> <tr class="row{$cycle_idx}">
<tr class="row{$cycle_idx}"> <td>{$no}</td>
<td>{$no}</td> <td >{$val->title}</td>
<td >{$val->title}</td> <td>{zdate($val->regdate,"Y-m-d")}</td>
<td>{zdate($val->regdate,"Y-m-d")}</td> <td>
<td> <a href="{getUrl('act','dispMenuAdminManagement','menu_srl',$val->menu_srl)}">{$lang->cmd_setup}</a>
<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>
<button type="button" onclick="doDeleteMenu('{$val->menu_srl}');return false;" title="{$lang->cmd_delete}" class="text">{$lang->cmd_delete}</button> </td>
</td> </tr>
</tr> <!--@end-->
<!--@end--> </tbody>
</tbody> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><a href="{getUrl('act','dispMenuAdminInsert','module_srl','')}">{$lang->cmd_make}</a></span> <span class="btn"><a href="{getUrl('act','dispMenuAdminInsert','module_srl','')}">{$lang->cmd_make}</a></span>
</div> </div>

View file

@ -7,21 +7,19 @@
<form ruleset="insertMenu" action="./" method="post"> <form ruleset="insertMenu" action="./" method="post">
<input type="hidden" name="module" value="menu" /> <input type="hidden" name="module" value="menu" />
<input type="hidden" name="act" value="procMenuAdminInsert" /> <input type="hidden" name="act" value="procMenuAdminInsert" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="col">{$lang->cmd_menu_insert}</th>
<th scope="col">{$lang->cmd_menu_insert}</th> <td>{nl2br($lang->about_menu_management)}</td>
<td>{nl2br($lang->about_menu_management)}</td> </tr>
</tr> <tr>
<tr> <th scope="col">{$lang->title}</th>
<th scope="col">{$lang->title}</th> <td>
<td> <input type="text" name="title" value="{$menu_info->title}" />
<input type="text" name="title" value="{$menu_info->title}" /> <p>{$lang->about_title}</p>
<p>{$lang->about_title}</p> </td>
</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_submit}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_submit}" /></span>
</div> </div>

View file

@ -7,8 +7,7 @@
<h3 class="h3">{$lang->menu}</h3> <h3 class="h3">{$lang->menu}</h3>
<button type="button" onclick="hideCategoryInfo();return false" >{$lang->cmd_close}</button> <button type="button" onclick="hideCategoryInfo();return false" >{$lang->cmd_close}</button>
<div class="layerBody"> <div class="layerBody">
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0">
<!--@if($item_info->parent_menu_name)--> <!--@if($item_info->parent_menu_name)-->
<tr class="row{$cycle_idx}"> <tr class="row{$cycle_idx}">
<th scope="row">{$lang->parent_menu_name}</th> <th scope="row">{$lang->parent_menu_name}</th>
@ -101,7 +100,6 @@
</td> </td>
</tr> </tr>
</table> </table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
</div> </div>

View file

@ -23,41 +23,37 @@
<input type="hidden" name="act" value="procMenuAdminUpdate" /> <input type="hidden" name="act" value="procMenuAdminUpdate" />
<input type="hidden" name="menu_srl" value="{$menu_info->menu_srl}" /> <input type="hidden" name="menu_srl" value="{$menu_info->menu_srl}" />
<h3 class="h3">{$lang->menu_management}</h3> <h3 class="h3">{$lang->menu_management}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="col">{$lang->title}</th>
<th scope="col">{$lang->title}</th> <td>
<td> <input type="text" name="title" value="{$menu_info->title}" />
<input type="text" name="title" value="{$menu_info->title}" /> <input type="submit" value="{$lang->cmd_modify}" />
<input type="submit" value="{$lang->cmd_modify}" /> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="col">{$lang->menu_management}</th>
<th scope="col">{$lang->menu_management}</th> <td >
<td > {nl2br($lang->about_menu_management)}
{nl2br($lang->about_menu_management)} <button type="button" onclick="doReloadTreeMenu('{$menu_info->menu_srl}');return false;">{$lang->cmd_remake_cache}</button>
<button type="button" onclick="doReloadTreeMenu('{$menu_info->menu_srl}');return false;">{$lang->cmd_remake_cache}</button> </td>
</td> </tr>
</tr> </table>
</table>
</div>
</form> </form>
<!--@else--> <!--@else-->
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="col">{$lang->title}</th>
<th scope="col">{$lang->title}</th> <td >
<td > {$menu_info->title}
{$menu_info->title} </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="col">{$lang->menu_management}</th>
<th scope="col">{$lang->menu_management}</th> <td >{nl2br($lang->about_menu_management)}</td>
<td >{nl2br($lang->about_menu_management)}</td> </tr>
</tr> </table>
</table>
</div>
<!--@end--> <!--@end-->

View file

@ -17,33 +17,31 @@
<!--@end--> <!--@end-->
</select> </select>
<input type="submit" name="go_button" id="go_button" value="GO" /> <input type="submit" name="go_button" id="go_button" value="GO" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th scope="row">{$lang->module_category}</th>
<th scope="row">{$lang->module_category}</th> <th scope="row">{$lang->module}</th>
<th scope="row">{$lang->module}</th> <th scope="row" >{$lang->mid}</th>
<th scope="row" >{$lang->mid}</th> <th scope="row">{$lang->cmd_select}</th>
<th scope="row">{$lang->cmd_select}</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody>
<!--@foreach($mid_list as $key => $val)-->
<!--@foreach($mid_list as $key => $val)--> <tr>
<tr> <td>
<td> <!--@if(!$val->module_category_srl)-->
<!--@if(!$val->module_category_srl)--> {$lang->not_exists}
{$lang->not_exists} <!--@else-->
<!--@else--> {$module_category[$val->module_category_srl]->title}
{$module_category[$val->module_category_srl]->title} <!--@end-->
<!--@end--> </td>
</td> <td>{$val->module}</td>
<td>{$val->module}</td> <td>{$val->browser_title} ({$key})</td>
<td>{$val->browser_title} ({$key})</td> <td><button type="button" onclick="doInsertMid('{$key}','{$menu_id}'); return false;">{$lang->cmd_select}</button></td>
<td><button type="button" onclick="doInsertMid('{$key}','{$menu_id}'); return false;">{$lang->cmd_select}</button></td> </tr>
</tr> <!--@end-->
<!--@end--> </tbody>
</tbody> </table>
</table>
</div>
</form> </form>

View file

@ -7,70 +7,66 @@
<input type="hidden" name="module" value="module" /> <input type="hidden" name="module" value="module" />
<input type="hidden" name="act" value="procModuleAdminCopyModule" /> <input type="hidden" name="act" value="procModuleAdminCopyModule" />
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" /> <input type="hidden" name="module_srl" value="{$module_info->module_srl}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row">{$lang->module}</th>
<th scope="row">{$lang->module}</th> <td >{$module_info->module}</td>
<td >{$module_info->module}</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->mid}</th>
<th scope="row">{$lang->mid}</th> <td>{$module_info->mid}</td>
<td>{$module_info->mid}</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->browser_title}</th>
<th scope="row">{$lang->browser_title}</th> <td>{$module_info->browser_title}</td>
<td>{$module_info->browser_title}</td> </tr>
</tr> </table>
</table> <table class="x_table x_table-striped x_table-hover">
</div> <tr>
<div class="table"> <th scope="col"><div>{$lang->mid}<div></th>
<table width="100%" border="1" cellspacing="0"> <th scope="col"><div>{$lang->browser_title}<div></th>
<tr> </tr>
<th scope="col"><div>{$lang->mid}<div></th> <tr>
<th scope="col"><div>{$lang->browser_title}<div></th> <td><input type="text" name="mid_1" /></td>
</tr> <td><input type="text" name="browser_title_1" /></td>
<tr> </tr>
<td><input type="text" name="mid_1" /></td> <tr>
<td><input type="text" name="browser_title_1" /></td> <td><input type="text" name="mid_2" /></td>
</tr> <td><input type="text" name="browser_title_2" /></td>
<tr> </tr>
<td><input type="text" name="mid_2" /></td> <tr>
<td><input type="text" name="browser_title_2" /></td> <td><input type="text" name="mid_3" /></td>
</tr> <td><input type="text" name="browser_title_3" /></td>
<tr> </tr>
<td><input type="text" name="mid_3" /></td> <tr>
<td><input type="text" name="browser_title_3" /></td> <td><input type="text" name="mid_4" /></td>
</tr> <td><input type="text" name="browser_title_4" /></td>
<tr> </tr>
<td><input type="text" name="mid_4" /></td> <tr>
<td><input type="text" name="browser_title_4" /></td> <td><input type="text" name="mid_5" /></td>
</tr> <td><input type="text" name="browser_title_5" /></td>
<tr> </tr>
<td><input type="text" name="mid_5" /></td> <tr>
<td><input type="text" name="browser_title_5" /></td> <td><input type="text" name="mid_6" /></td>
</tr> <td><input type="text" name="browser_title_6" /></td>
<tr> </tr>
<td><input type="text" name="mid_6" /></td> <tr>
<td><input type="text" name="browser_title_6" /></td> <td><input type="text" name="mid_7" /></td>
</tr> <td><input type="text" name="browser_title_7" /></td>
<tr> </tr>
<td><input type="text" name="mid_7" /></td> <tr>
<td><input type="text" name="browser_title_7" /></td> <td><input type="text" name="mid_8" /></td>
</tr> <td><input type="text" name="browser_title_8" /></td>
<tr> </tr>
<td><input type="text" name="mid_8" /></td> <tr>
<td><input type="text" name="browser_title_8" /></td> <td><input type="text" name="mid_9" /></td>
</tr> <td><input type="text" name="browser_title_9" /></td>
<tr> </tr>
<td><input type="text" name="mid_9" /></td> <tr>
<td><input type="text" name="browser_title_9" /></td> <td><input type="text" name="mid_10" /></td>
</tr> <td><input type="text" name="browser_title_10" /></td>
<tr> </tr>
<td><input type="text" name="mid_10" /></td> </table>
<td><input type="text" name="browser_title_10" /></td>
</tr>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
</div> </div>

View file

@ -6,26 +6,24 @@
<input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="vid" value="{$vid}" />
<input type="hidden" name="filter" value="{$filter}" /> <input type="hidden" name="filter" value="{$filter}" />
<input type="hidden" name="input" value="{$input}" /> <input type="hidden" name="input" value="{$input}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tbody>
<tbody> <tr>
<tr> <th>{$lang->description}</th>
<th>{$lang->description}</th> <td><input type="text" name="comment" /></td>
<td><input type="text" name="comment" /></td> </tr>
</tr> <tr>
<tr> <th>{$lang->file}</th>
<th>{$lang->file}</th> <td><input type="file" name="addfile" />
<td><input type="file" name="addfile" /> <p>
<p> <!--@if($arrfilter && is_array($arrfilter))-->
<!--@if($arrfilter && is_array($arrfilter))--> {@sprintf($lang->about_file_extension,join(", ",$arrfilter ))}
{@sprintf($lang->about_file_extension,join(", ",$arrfilter ))} <!--@end-->
<!--@end--> </p>
</p> </td>
</td> </tr>
</tr> </tbody>
</tbody> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_submit}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_submit}" /></span>
</div> </div>

View file

@ -1,48 +1,46 @@
<!--%load_js_plugin("filebox")--> <!--%load_js_plugin("filebox")-->
<h1 class="h1">{$lang->filebox}</h1> <h1 class="h1">{$lang->filebox}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th>{$lang->file}</th>
<th>{$lang->file}</th> <th>{$lang->description}</th>
<th>{$lang->description}</th> <th>{$lang->regdate}</th>
<th>{$lang->regdate}</th> <th>&nbsp;</th>
<th>&nbsp;</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody>
<!--@foreach($filebox_list as $key=>$val)--> <!--@foreach($filebox_list as $key=>$val)-->
<tr> <tr>
<td> <td>
<div id="filebox_preview_{$val->module_filebox_srl}"> <div id="filebox_preview_{$val->module_filebox_srl}">
<!--@if($val->fileextension=='swf')--> <!--@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"> <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="{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="transparent" name="wmode" xmlns="http://www.w3.org/1999/xhtml" />
<param value="sameDomain" name="allowScriptAccess" 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" /> <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" /> <embed height="100" width="100" wmode="transparent" flashvars="" autostart="false" src="{getUrl('')}{$val->filename}" xmlns="http://www.w3.org/1999/xhtml" />
</object> </object>
<!--@elseif(in_array($val->fileextension,array('gif','png','jpg','jpeg')))--> <!--@elseif(in_array($val->fileextension,array('gif','png','jpg','jpeg')))-->
<img src="{getUrl('')}{$val->filename}" width="100" height="100" /> <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--> <!--@end-->
<button type="button" onclick="XE.filebox.deleteFile('{$val->module_filebox_srl}');">{$lang->cmd_delete}</button> </div>
</td> </td>
</tr> <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--> <!--@end-->
</tbody> </tbody>
</table> </table>
</div>
<!-- 페이지 네비게이션 --> <!-- 페이지 네비게이션 -->
<div class="pagination"> <div class="pagination">
<a href="{getUrl('page','','module_srl','')}" class="direction">&lsaquo; {$lang->first_page}</a> <a href="{getUrl('page','','module_srl','')}" class="direction">&lsaquo; {$lang->first_page}</a>

View file

@ -4,26 +4,24 @@
<div class="fg"> <div class="fg">
<h2 class="h2">{$lang->do_selected}</h2> <h2 class="h2">{$lang->do_selected}</h2>
<div class="table even"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" cellspacing="0" border="1"> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->mid}</th>
<th scope="col">{$lang->mid}</th> <th scope="col">{$lang->browser_title}</th>
<th scope="col">{$lang->browser_title}</th> </tr>
</tr> </thead>
</thead> <tbody id="manageSelectedModuleBody">
<tbody id="manageSelectedModuleBody"> </tbody>
</tbody> </table>
</table>
</div>
<div class="cnb"> <p>
<a href="#manageSelectedModuleSetup" class="tgAnchor">{$lang->bundle_setup}</a> <a href="#manageSelectedModuleSetup" class="tgAnchor">{$lang->bundle_setup}</a>
| <i>|</i>
<a href="#manageSelectedModuleAddition" class="tgAnchor">{$lang->bundle_addition_setup}</a> <a href="#manageSelectedModuleAddition" class="tgAnchor">{$lang->bundle_addition_setup}</a>
| <i>|</i>
<a href="#manageSelectedModuleGrant" class="tgAnchor">{$lang->bundle_grant_setup}</a> <a href="#manageSelectedModuleGrant" class="tgAnchor">{$lang->bundle_grant_setup}</a>
</div> </p>
<include target="include.module_setup.html" /> <include target="include.module_setup.html" />
<include target="include.module_addition_setup.html" /> <include target="include.module_addition_setup.html" />

View file

@ -10,38 +10,36 @@
<input type="hidden" name="module_srls" value="{$module_srls}" /> <input type="hidden" name="module_srls" value="{$module_srls}" />
<h3 class="h3">{$lang->permission_setting}</h3> <h3 class="h3">{$lang->permission_setting}</h3>
<p>{$lang->about_grant_deatil}</p> <p>{$lang->about_grant_deatil}</p>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->grant}</th>
<th scope="col">{$lang->grant}</th> <th scope="col" colspan="3">{$lang->target}</th>
<th scope="col" colspan="3">{$lang->target}</th> </tr>
</tr> </thead>
</thead>
<tbody> <tbody>
<!--@foreach($grant_list as $grant_name => $grant_item)--> <!--@foreach($grant_list as $grant_name => $grant_item)-->
<tr class="row{$cycle_idx}"> <tr class="row{$cycle_idx}">
<th scope="row">{$grant_item->title}</th> <th scope="row">{$grant_item->title}</th>
<td > <td >
<select name="{$grant_name}_default" class="grant_default"> <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 == '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--> <!--@if($grant_item->default != 'manager')--><option value="-1">{$lang->grant_to_login_user}</option><!--@end-->
<!--@if($grant_item->default != 'manager')--><option value="-2" <!--@if($default_grant[$grant_name]=='site')-->selected="selected"<!--@end-->>{$lang->grant_to_site_user}</option><!--@end--> <!--@if($grant_item->default != 'manager')--><option value="-2" <!--@if($default_grant[$grant_name]=='site')-->selected="selected"<!--@end-->>{$lang->grant_to_site_user}</option><!--@end-->
<option value="">{$lang->grant_to_group}</option> <option value="">{$lang->grant_to_group}</option>
</select> </select>
<div id="zone_{$grant_name}" style="display:none"> <div id="zone_{$grant_name}" style="display:none">
<!--@foreach($group_list as $group_srl => $group_item)--> <!--@foreach($group_list as $group_srl => $group_item)-->
<input type="checkbox" class="checkbox" name="{$grant_name}[]" value="{$group_item->group_srl}" id="grant_{$grant_name}_{$group_srl}" /> <input type="checkbox" class="checkbox" name="{$grant_name}[]" value="{$group_item->group_srl}" id="grant_{$grant_name}_{$group_srl}" />
<label for="grant_{$grant_name}_{$group_srl}">{$group_item->title}</label> <label for="grant_{$grant_name}_{$group_srl}">{$group_item->title}</label>
<!--@end--> <!--@end-->
</div> </div>
</td> </td>
</tr> </tr>
<!--@end--> <!--@end-->
</tbody> </tbody>
</table> </table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
</div> </div>

View file

@ -12,38 +12,36 @@
<input type="hidden" name="module_srls" value="{$module_srls}" /> <input type="hidden" name="module_srls" value="{$module_srls}" />
<h2 class="h2">{$lang->permission_setting}</h2> <h2 class="h2">{$lang->permission_setting}</h2>
<p>{$lang->about_grant_deatil}</p> <p>{$lang->about_grant_deatil}</p>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->grant}</th>
<th scope="col">{$lang->grant}</th> <th scope="col" colspan="3">{$lang->target}</th>
<th scope="col" colspan="3">{$lang->target}</th> </tr>
</tr> </thead>
</thead>
<tbody>
<tbody> <!--@foreach($grant_list as $grant_name => $grant_item)-->
<!--@foreach($grant_list as $grant_name => $grant_item)--> <tr class="row{$cycle_idx}">
<tr class="row{$cycle_idx}"> <th scope="row">{$grant_item->title}</th>
<th scope="row">{$grant_item->title}</th> <td >
<td > <select name="{$grant_name}_default" class="grant_default">
<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 == '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-->
<!--@if($grant_item->default != 'manager')--><option value="-1">{$lang->grant_to_login_user}</option><!--@end--> <!--@if($grant_item->default != 'manager')--><option value="-2" <!--@if($default_grant[$grant_name]=='site')-->selected="selected"<!--@end-->>{$lang->grant_to_site_user}</option><!--@end-->
<!--@if($grant_item->default != 'manager')--><option value="-2" <!--@if($default_grant[$grant_name]=='site')-->selected="selected"<!--@end-->>{$lang->grant_to_site_user}</option><!--@end--> <option value="">{$lang->grant_to_group}</option>
<option value="">{$lang->grant_to_group}</option> </select>
</select> <div id="zone_{$grant_name}" style="display:none">
<div id="zone_{$grant_name}" style="display:none"> <!--@foreach($group_list as $group_srl => $group_item)-->
<!--@foreach($group_list as $group_srl => $group_item)--> <input type="checkbox" class="checkbox" name="{$grant_name}" value="{$group_item->group_srl}" id="grant_{$grant_name}_{$group_srl}" />
<input type="checkbox" class="checkbox" name="{$grant_name}" value="{$group_item->group_srl}" id="grant_{$grant_name}_{$group_srl}" /> <label for="grant_{$grant_name}_{$group_srl}">{$group_item->title}</label>
<label for="grant_{$grant_name}_{$group_srl}">{$group_item->title}</label> <!--@end-->
<!--@end--> </div>
</div> </td>
</td> </tr>
</tr> <!--@end-->
<!--@end--> </tbody>
</tbody> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
</div> </div>

View file

@ -35,38 +35,36 @@
</ul> </ul>
<h2 class="h2">{$lang->permission_setting}</h2> <h2 class="h2">{$lang->permission_setting}</h2>
<p>{$lang->about_grant_deatil}</p> <p>{$lang->about_grant_deatil}</p>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->grant}</th>
<th scope="col">{$lang->grant}</th> <th scope="col" colspan="3">{$lang->target}</th>
<th scope="col" colspan="3">{$lang->target}</th> </tr>
</thead>
<tbody>
<!--@foreach($grant_list as $grant_name => $grant_item)-->
<tr>
<th scope="row">{$grant_item->title}</th>
<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-->
<!--@if($grant_item->default != 'manager')--><option value="-2" <!--@if($default_grant[$grant_name]=='site')-->selected="selected"<!--@end-->>{$lang->grant_to_site_user}</option><!--@end-->
<option value="" <!--@if($default_grant[$grant_name]=='group')-->selected="selected"<!--@end-->>{$lang->grant_to_group}</option>
</select>
<div id="zone_{$grant_name}" style="display:none">
<!--@foreach($group_list as $group_srl => $group_item)-->
<input type="checkbox" class="checkbox" name="{$grant_name}" value="{$group_item->group_srl}" id="grant_{$grant_name}_{$group_srl}" <!--@if(is_array($selected_group[$grant_name])&&in_array($group_srl,$selected_group[$grant_name]))-->checked="checked"<!--@end-->/>
<label for="grant_{$grant_name}_{$group_srl}">{$group_item->title}</label>
<!--@end-->
</div>
</td>
</tr> </tr>
</thead> <!--@end-->
<tbody> </tbody>
<!--@foreach($grant_list as $grant_name => $grant_item)--> </table>
<tr>
<th scope="row">{$grant_item->title}</th>
<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-->
<!--@if($grant_item->default != 'manager')--><option value="-2" <!--@if($default_grant[$grant_name]=='site')-->selected="selected"<!--@end-->>{$lang->grant_to_site_user}</option><!--@end-->
<option value="" <!--@if($default_grant[$grant_name]=='group')-->selected="selected"<!--@end-->>{$lang->grant_to_group}</option>
</select>
<div id="zone_{$grant_name}" style="display:none">
<!--@foreach($group_list as $group_srl => $group_item)-->
<input type="checkbox" class="checkbox" name="{$grant_name}" value="{$group_item->group_srl}" id="grant_{$grant_name}_{$group_srl}" <!--@if(is_array($selected_group[$grant_name])&&in_array($group_srl,$selected_group[$grant_name]))-->checked="checked"<!--@end-->/>
<label for="grant_{$grant_name}_{$group_srl}">{$group_item->title}</label>
<!--@end-->
</div>
</td>
</tr>
<!--@end-->
</tbody>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
</div> </div>

View file

@ -1,82 +1,78 @@
<h1 class="h1">{$lang->module_maker}</h1> <h1 class="h1">{$lang->module_maker}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row">{$lang->title}</th>
<th scope="row">{$lang->title}</th> <td>{$module_info->title} ver {$module_info->version}</td>
<td>{$module_info->title} ver {$module_info->version}</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->author}</th>
<th scope="row">{$lang->author}</th> <td class="blue">
<td class="blue"> <!--@foreach($module_info->author as $author)-->
<!--@foreach($module_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 />
{$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-->
<!--@endforeach--> </td>
</td> </tr>
</tr> <!--@if($module_info->homepage)-->
<!--@if($module_info->homepage)--> <tr>
<tr> <th scope="row">{$lang->homepage}</th>
<th scope="row">{$lang->homepage}</th> <td class="blue"><a href="{$module_info->homepage}" onclick="window.open(this.href);return false;">{$module_info->homepage}</a></td>
<td class="blue"><a href="{$module_info->homepage}" onclick="window.open(this.href);return false;">{$module_info->homepage}</a></td> </tr>
</tr> <!--@endif-->
<!--@endif--> <tr>
<tr> <th scope="row">{$lang->regdate}</th>
<th scope="row">{$lang->regdate}</th> <td>{zdate($module_info->date, 'Y-m-d')}</td>
<td>{zdate($module_info->date, 'Y-m-d')}</td> </tr>
</tr> <!--@if($module_info->license || $module_info->license_link)-->
<!--@if($module_info->license || $module_info->license_link)--> <tr>
<tr> <th scope="row">{$lang->module_license}</th>
<th scope="row">{$lang->module_license}</th> <td>
<td> {nl2br(trim($module_info->license))}
{nl2br(trim($module_info->license))} <!--@if($module_info->license_link)-->
<!--@if($module_info->license_link)--> <p><a href="{$module_info->license_link}" onclick="window.close(); return false;">{$module_info->license_link}</a></p>
<p><a href="{$module_info->license_link}" onclick="window.close(); return false;">{$module_info->license_link}</a></p> <!--@end-->
<!--@end--> </td>
</td> </tr>
</tr> <!--@endif--><!--@if($module_info->description)-->
<!--@endif--><!--@if($module_info->description)--> <tr>
<tr> <th scope="row">{$lang->description}</th>
<th scope="row">{$lang->description}</th> <td>{nl2br(trim($module_info->description))}</td>
<td>{nl2br(trim($module_info->description))}</td> </tr>
</tr> <!--@endif-->
<!--@endif--> </table>
</table>
</div>
<!--@if($module_info->history)--> <!--@if($module_info->history)-->
<h1 class="h1">{$lang->module_history}</h1> <h1 class="h1">{$lang->module_history}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="100" />
<col width="100" /> <col />
<col />
<!--@foreach($module_info->history as $history)--> <!--@foreach($module_info->history as $history)-->
<tr> <tr>
<th scope="row"> <th scope="row">
{$history->version}<br /> {$history->version}<br />
{$history->date} {$history->date}
</th> </th>
<td> <td>
<!--@foreach($history->author as $author)--> <!--@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> <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--> <!--@endforeach-->
<!--@if($addon_info->description)--> <!--@if($addon_info->description)-->
<p>{nl2br(trim($history->description))}</p> <p>{nl2br(trim($history->description))}</p>
<!--@endif--> <!--@endif-->
<!--@if($history->logs)--> <!--@if($history->logs)-->
<ul> <ul>
<!--@foreach($history->logs as $log)--> <!--@foreach($history->logs as $log)-->
<!--@if($log->link)--> <!--@if($log->link)-->
<li><a href="{$log->text}" onclick="window.open(this.href);return false;">{$log->text}</a></li> <li><a href="{$log->text}" onclick="window.open(this.href);return false;">{$log->text}</a></li>
<!--@else--> <!--@else-->
<li>{$log->text}</li> <li>{$log->text}</li>
<!--@endif--> <!--@endif-->
<!--@endforeach--> <!--@endforeach-->
</ul> </ul>
<!--@endif--> <!--@endif-->
</td> </td>
</tr> </tr>
<!--@endforeach--> <!--@endforeach-->
</table> </table>
</div>
<!--@endif--> <!--@endif-->

View file

@ -6,70 +6,66 @@
<input type="hidden" name="id" value="{$id}" /> <input type="hidden" name="id" value="{$id}" />
<input type="hidden" name="type" value="{$type}" /> <input type="hidden" name="type" value="{$type}" />
<input type="hidden" name="vid" value="{$vid}" /> <input type="hidden" name="vid" value="{$vid}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tbody>
<tbody> <!--@if($site_count && $logged_info->is_admin == 'Y')-->
<!--@if($site_count && $logged_info->is_admin == 'Y')--> <tr>
<tr> <th>{$lang->virtual_site}</th>
<th>{$lang->virtual_site}</th> <td>
<td> <input type="text" name="site_keyword" value="{$site_keyword}" /> <span class="button blue"><input type="submit" value="{$lang->cmd_search}" /></span>
<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>
<p>{$lang->about_search_virtual_site}</p> </td>
</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> </tr>
<!--@end--> <!--@end-->
<!--@else-->
<!--@foreach($selected_mids as $key => $val)-->
<!--@foreach($val as $k => $v)-->
<tr> <tr>
<td>{$k}</td> <th>{$lang->module}</th>
<td>{$v->browser_title}</td> <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> <select name="selected_module">
</tr> <!--@foreach($mid_list as $key=>$val)-->
<!--@end--> <option value="{$key}" <!--@if($selected_module == $key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end--> <!--@end-->
<!--@end--> </select><span class="button blue"><input type="submit" value="{$lang->cmd_search}" /></span>
</tbody> </td>
</table> </tr>
</div> </tbody>
</table>
<table class="x_table x_table-striped x_table-hover">
<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>
</form> </form>

View file

@ -1,85 +1,81 @@
<load target="../../admin/tpl/css/admin.css" usecdn="true" /> <load target="../../admin/tpl/css/admin.css" usecdn="true" />
<h1 class="h1">{$skin_info->title}</h1> <h1 class="h1">{$skin_info->title}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="100" />
<col width="100" /> <col />
<col /> <tr>
<tr> <th scope="row"><label for="textfield1">{$lang->title}</label></th>
<th scope="row"><label for="textfield1">{$lang->title}</label></th> <td>{$skin_info->title}</td>
<td>{$skin_info->title}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="textfield2">{$lang->author}</label></th>
<th scope="row"><label for="textfield2">{$lang->author}</label></th> <td class="blue">
<td class="blue"> <!--@foreach($skin_info->author as $author)-->
<!--@foreach($skin_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 />
{$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-->
<!--@endforeach--> </td>
</td> </tr>
</tr> <!--@if($skin_info->homepage)-->
<!--@if($skin_info->homepage)--> <tr>
<tr> <th scope="row"><label for="textfield2">{$lang->homepage}</label></th>
<th scope="row"><label for="textfield2">{$lang->homepage}</label></th> <td class="blue"><a href="{$skin_info->homepage}" onclick="window.open(this.href);return false;">{$skin_info->homepage}</a></td>
<td class="blue"><a href="{$skin_info->homepage}" onclick="window.open(this.href);return false;">{$skin_info->homepage}</a></td> </tr>
</tr> <!--@endif-->
<!--@endif--> <tr>
<tr> <th scope="row"><label for="textfield2">{$lang->regdate}</label></th>
<th scope="row"><label for="textfield2">{$lang->regdate}</label></th> <td>{zdate($skin_info->date, 'Y-m-d')}</td>
<td>{zdate($skin_info->date, 'Y-m-d')}</td> </tr>
</tr> <!--@if($skin_info->license || $skin_info->license_link)-->
<!--@if($skin_info->license || $skin_info->license_link)--> <tr>
<tr> <th scope="row">{$lang->skin_license}</th>
<th scope="row">{$lang->skin_license}</th> <td>
<td> {nl2br(trim($skin_info->license))}
{nl2br(trim($skin_info->license))} <!--@if($skin_info->license_link)-->
<!--@if($skin_info->license_link)--> <p><a href="{$skin_info->license_link}" onclick="window.close(); return false;">{$skin_info->license_link}</a></p>
<p><a href="{$skin_info->license_link}" onclick="window.close(); return false;">{$skin_info->license_link}</a></p> <!--@end-->
<!--@end--> </td>
</td> </tr>
</tr> <!--@end-->
<!--@end--> <!--@if($skin_info->description)-->
<!--@if($skin_info->description)--> <tr>
<tr> <th scope="row" class="borderBottomNone">{$lang->description}</th>
<th scope="row" class="borderBottomNone">{$lang->description}</th> <td class="borderBottomNone">{nl2br(trim($skin_info->description))}</td>
<td class="borderBottomNone">{nl2br(trim($skin_info->description))}</td> </tr>
</tr> <!--@end-->
<!--@end--> </table>
</table>
</div>
<!--@if($skin_info->history)--> <!--@if($skin_info->history)-->
<h1 class="h1">{$lang->skin_history}</h1> <h1 class="h1">{$lang->skin_history}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="100" />
<col width="100" /> <col />
<col />
<!--@foreach($skin_info->history as $history)--> <!--@foreach($skin_info->history as $history)-->
<tr> <tr>
<th scope="row"> <th scope="row">
{$history->version}<br /> {$history->version}<br />
{$history->date} {$history->date}
</th> </th>
<td> <td>
<!--@foreach($history->author as $author)--> <!--@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> <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--> <!--@endforeach-->
<!--@if($history->description)--> <!--@if($history->description)-->
<p>{nl2br(trim($history->description))}</p> <p>{nl2br(trim($history->description))}</p>
<!--@endif--> <!--@endif-->
<!--@if($history->logs)--> <!--@if($history->logs)-->
<ul> <ul>
<!--@foreach($history->logs as $log)--> <!--@foreach($history->logs as $log)-->
<!--@if($log->link)--> <!--@if($log->link)-->
<li><a href="{$log->link}">{$log->text}</a></li> <li><a href="{$log->link}">{$log->text}</a></li>
<!--@else--> <!--@else-->
<li>{$log->text}</li> <li>{$log->text}</li>
<!--@endif--> <!--@endif-->
<!--@endforeach--> <!--@endforeach-->
</ul> </ul>
<!--@endif--> <!--@endif-->
</td> </td>
</tr> </tr>
<!--@endforeach--> <!--@endforeach-->
</table> </table>
</div>
<!--@endif--> <!--@endif-->

View file

@ -11,26 +11,21 @@
<a href="{getSiteUrl($module_info->domain,'','mid',$module_info->mid)}">{$lang->view}</a> <a href="{getSiteUrl($module_info->domain,'','mid',$module_info->mid)}">{$lang->view}</a>
</h2> </h2>
<!--@end--> <!--@end-->
<div class="cnb"> <p>
<ul> <a cond="$module=='admin'" href="{getUrl('act','dispPageAdminContent','module_srl','')}" class="active"|cond="$act=='dispPageAdminContent'">{$lang->cmd_list}</a>
<!--@if($module=='admin')--> <a cond="$module!='admin'" href="{getUrl('act','')}">{$lang->cmd_back}</a>
<li <!--@if($act=='dispPageAdminContent')-->class="active"<!--@end-->><a href="{getUrl('act','dispPageAdminContent','module_srl','')}">{$lang->cmd_list}</a></li> <block cond="$module_srl">
<!--@else--> <a href="{getUrl('act','dispPageAdminInfo')}" class="active"|cond="$act=='dispPageAdminInfo'">{$lang->module_info}</a>
<li><a href="{getUrl('act','')}">{$lang->cmd_back}</a></li> <a href="{getUrl('act','dispPageAdminPageAdditionSetup')}" class="active"|cond="$act=='dispPageAdminPageAdditionSetup'">{$lang->cmd_addition_setup}</a>
<!--@end--> <a href="{getUrl('act','dispPageAdminGrantInfo')}" class="active"|cond="$act=='dispPageAdminGrantInfo'">{$lang->cmd_manage_grant}</a>
<!--@if($module_srl)-->
<li <!--@if($act=='dispPageAdminInfo')-->class="active"<!--@end-->><a href="{getUrl('act','dispPageAdminInfo')}">{$lang->module_info}</a></li>
<li <!--@if($act=='dispPageAdminPageAdditionSetup')-->class="active"<!--@end-->><a href="{getUrl('act','dispPageAdminPageAdditionSetup')}">{$lang->cmd_addition_setup}</a></li>
<li <!--@if($act=='dispPageAdminGrantInfo')-->class="active"<!--@end-->><a href="{getUrl('act','dispPageAdminGrantInfo')}">{$lang->cmd_manage_grant}</a></li>
<block cond="$module_info->page_type === 'ARTICLE'"> <block cond="$module_info->page_type === 'ARTICLE'">
<li <!--@if($act === 'dispPageAdminSkinInfo')-->class="active"<!--@end-->><a href="{getUrl('act','dispPageAdminSkinInfo')}">{$lang->cmd_manage_skin}</a></li> <a href="{getUrl('act','dispPageAdminSkinInfo')}" class="active"|cond="$act === 'dispPageAdminSkinInfo'">{$lang->cmd_manage_skin}</a>
<li <!--@if($act === 'dispPageAdminMobileSkinInfo')-->class="active"<!--@end-->><a href="{getUrl('act','dispPageAdminMobileSkinInfo')}">{$lang->cmd_manage_mobile_skin}</a></li> <a href="{getUrl('act','dispPageAdminMobileSkinInfo')}" class="active"|cond="$act === 'dispPageAdminMobileSkinInfo'">{$lang->cmd_manage_mobile_skin}</a>
<li></li>
</block> </block>
<!--@else--> </block>
<block cond="!$module_srl">
<li <!--@if($act=='dispPageAdminInsert')-->class="active"<!--@end-->><a href="{getUrl('act','dispPageAdminInsert')}">{$lang->cmd_page_create}</a></li> <li <!--@if($act=='dispPageAdminInsert')-->class="active"<!--@end-->><a href="{getUrl('act','dispPageAdminInsert')}">{$lang->cmd_page_create}</a></li>
<!--@end--> </block>
</ul> </p>
</div>
<!--@end--> <!--@end-->

View file

@ -18,65 +18,63 @@
<!-- 목록 --> <!-- 목록 -->
<form action="./" method="get" onsubmit="return doChangeCategory(this);" id="fo_list"> <form action="./" method="get" onsubmit="return doChangeCategory(this);" id="fo_list">
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption>
<caption>Total {number_format($total_count)}, Page {number_format($page)}/{number_format($total_page)}</caption> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->no}</th>
<th scope="col">{$lang->no}</th> <th scope="col"><input type="checkbox" onclick="XE.checkboxToggleAll(); return false;" /></th>
<th scope="col"><input type="checkbox" onclick="XE.checkboxToggleAll(); return false;" /></th> <th scope="col">
<th scope="col"> <input type="hidden" name="module" value="{$module}" />
<input type="hidden" name="module" value="{$module}" /> <input type="hidden" name="act" value="{$act}" />
<input type="hidden" name="act" value="{$act}" /> <select name="module_category_srl">
<select name="module_category_srl"> <option value="">{$lang->module_category}</option>
<option value="">{$lang->module_category}</option> <option value="0" <!--@if($module_category_srl==="0")-->selected="selected"<!--@end-->>{$lang->not_exists}</option>
<option value="0" <!--@if($module_category_srl==="0")-->selected="selected"<!--@end-->>{$lang->not_exists}</option> <!--@foreach($module_category as $key => $val)-->
<!--@foreach($module_category as $key => $val)--> <option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<option value="{$key}" <!--@if($module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
<option value="">---------</option>
<option value="-1">{$lang->cmd_management}</option>
</select>
<input type="submit" name="go_button" id="go_button" value="GO" />
</th>
<th scope="col">{$lang->page_type}</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>
</thead>
<tbody>
<!--@foreach($page_list as $no => $val)-->
<tr class="row{$cycle_idx}">
<td>{$no}</td>
<td><input type="checkbox" name="cart" value="{$val->module_srl}" /></td>
<td>
<!--@if(!$val->module_category_srl)-->
<!--@if($val->site_srl)-->
{$lang->virtual_site}
<!--@else-->
{$lang->not_exists}
<!--@end--> <!--@end-->
<!--@else--> <option value="">---------</option>
{$module_category[$val->module_category_srl]->title} <option value="-1">{$lang->cmd_management}</option>
<!--@end--> </select>
</td> <input type="submit" name="go_button" id="go_button" value="GO" />
<td>{$val->page_type}</td> </th>
<td>{$val->mid}</td> <th scope="col">{$lang->page_type}</th>
<td><a href="{getSiteUrl($val->domain,'','mid',$val->mid)}" target="_blank">{$val->browser_title}</a></td> <th scope="col">{$lang->mid}</th>
<td>{zdate($val->regdate,"Y-m-d")}</td> <th scope="col">{$lang->browser_title}</th>
<td> <th scope="col">{$lang->regdate}</th>
<a href="{getUrl('act','dispPageAdminInfo','module_srl',$val->module_srl)}">{$lang->cmd_setup}</a> <th scope="col">&nbsp;</th>
<a href="{getUrl('','module','module','act','dispModuleAdminCopyModule','module_srl',$val->module_srl)}" onclick="popopen(this.href);return false;">{$lang->cmd_copy}</a> </tr>
<a href="{getUrl('act','dispPageAdminDelete','module_srl', $val->module_srl)}">{$lang->cmd_delete}</a> </thead>
</td>
</tr> <tbody>
<!--@end--> <!--@foreach($page_list as $no => $val)-->
</tbody> <tr class="row{$cycle_idx}">
</table> <td>{$no}</td>
</div> <td><input type="checkbox" name="cart" value="{$val->module_srl}" /></td>
<td>
<!--@if(!$val->module_category_srl)-->
<!--@if($val->site_srl)-->
{$lang->virtual_site}
<!--@else-->
{$lang->not_exists}
<!--@end-->
<!--@else-->
{$module_category[$val->module_category_srl]->title}
<!--@end-->
</td>
<td>{$val->page_type}</td>
<td>{$val->mid}</td>
<td><a href="{getSiteUrl($val->domain,'','mid',$val->mid)}" target="_blank">{$val->browser_title}</a></td>
<td>{zdate($val->regdate,"Y-m-d")}</td>
<td>
<a href="{getUrl('act','dispPageAdminInfo','module_srl',$val->module_srl)}">{$lang->cmd_setup}</a>
<a href="{getUrl('','module','module','act','dispModuleAdminCopyModule','module_srl',$val->module_srl)}" onclick="popopen(this.href);return false;">{$lang->cmd_copy}</a>
<a href="{getUrl('act','dispPageAdminDelete','module_srl', $val->module_srl)}">{$lang->cmd_delete}</a>
</td>
</tr>
<!--@end-->
</tbody>
</table>
<!-- 버튼 --> <!-- 버튼 -->
<div class="btnArea"> <div class="btnArea">

View file

@ -11,18 +11,16 @@
<input type="hidden" name="module_srl" value="{$module_info->module_srl}" /> <input type="hidden" name="module_srl" value="{$module_info->module_srl}" />
<h3 class="h3">{$lang->confirm_delete}</h3> <h3 class="h3">{$lang->confirm_delete}</h3>
<p>{$lang->page_delete_warning}</p> <p>{$lang->page_delete_warning}</p>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row">{$lang->module_name}</th>
<th scope="row">{$lang->module_name}</th> <td >{$module_info->mid}</td>
<td >{$module_info->mid}</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->module}</th>
<th scope="row">{$lang->module}</th> <td>{$module_info->module}</td>
<td>{$module_info->module}</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_delete}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_delete}" /></span>
<span class="btn"><a href="{getUrl('act','dispPageAdminContent')}">{$lang->cmd_back}</a></span> <span class="btn"><a href="{getUrl('act','dispPageAdminContent')}">{$lang->cmd_back}</a></span>

View file

@ -8,131 +8,129 @@
<input type="hidden" name="page" value="{$page}" /> <input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="module_srl" value="{$module_srl}" /> <input type="hidden" name="module_srl" value="{$module_srl}" />
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" /> <input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row">{$lang->page_type}</th>
<th scope="row">{$lang->page_type}</th> <td class="text">
<td class="text"> {$lang->page_type_name[$module_info->page_type]}
{$lang->page_type_name[$module_info->page_type]} </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->mid}</th>
<th scope="row">{$lang->mid}</th> <td class="text">
<td class="text"> <input type="text" name="page_name" value="{$module_info->mid}" />
<input type="text" name="page_name" value="{$module_info->mid}" /> <p>{$lang->about_mid}</p>
<p>{$lang->about_mid}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->module_category}</th>
<th scope="row">{$lang->module_category}</th> <td class="text">
<td class="text"> <select name="module_category_srl">
<select name="module_category_srl"> <option value="0">{$lang->notuse}</option>
<option value="0">{$lang->notuse}</option> <!--@foreach($module_category as $key => $val)-->
<!--@foreach($module_category as $key => $val)--> <option value="{$key}" <!--@if($module_info->module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<option value="{$key}" <!--@if($module_info->module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option> <!--@end-->
<!--@end--> </select>
</select> <p>{$lang->about_module_category}</p>
<p>{$lang->about_module_category}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->browser_title}</th>
<th scope="row">{$lang->browser_title}</th> <td class="text multiLangEdit">
<td class="text multiLangEdit"> <input type="hidden" name="browser_title" value="{htmlspecialchars($module_info->browser_title)}" class="vLang" />
<input type="hidden" name="browser_title" value="{htmlspecialchars($module_info->browser_title)}" class="vLang" /> <input type="text" value="{$module_info->browser_title}" class="vLang" />
<input type="text" value="{$module_info->browser_title}" class="vLang" /> <span class="desc"><a href="#langEdit" class="tgAnchor editUserLang" data-effect="slide">{$lang->cmd_set_multilingual}</a></span>
<span class="desc"><a href="#langEdit" class="tgAnchor editUserLang" data-effect="slide">{$lang->cmd_set_multilingual}</a></span> <p>{$lang->about_browser_title}</p>
<p>{$lang->about_browser_title}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->layout}</th>
<th scope="row">{$lang->layout}</th> <td class="text">
<td class="text"> <select name="layout_srl">
<select name="layout_srl"> <option value="0">{$lang->notuse}</option>
<option value="0">{$lang->notuse}</option> <!--@foreach($layout_list as $key => $val)-->
<!--@foreach($layout_list as $key => $val)--> <option value="{$val->layout_srl}" <!--@if($module_info->layout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option>
<option value="{$val->layout_srl}" <!--@if($module_info->layout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option> <!--@end-->
<!--@end--> </select>
</select> <p>{$lang->about_layout}</p>
<p>{$lang->about_layout}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->mobile_view}</th>
<th scope="row">{$lang->mobile_view}</th> <td class="text">
<td class="text"> <input type="checkbox" name="use_mobile" id="use_mobile" value="Y" <!--@if($module_info->use_mobile == "Y")-->checked="checked"<!--@end--> />
<input type="checkbox" name="use_mobile" id="use_mobile" value="Y" <!--@if($module_info->use_mobile == "Y")-->checked="checked"<!--@end--> /> <label for="use_mobile">{$lang->about_mobile_view}</label>
<label for="use_mobile">{$lang->about_mobile_view}</label> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->mobile_layout}</th>
<th scope="row">{$lang->mobile_layout}</th> <td class="text">
<td class="text"> <select name="mlayout_srl">
<select name="mlayout_srl"> <option value="0">{$lang->notuse}</option>
<option value="0">{$lang->notuse}</option> <!--@foreach($mlayout_list as $key => $val)-->
<!--@foreach($mlayout_list as $key => $val)--> <option value="{$val->layout_srl}" <!--@if($module_info->mlayout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option>
<option value="{$val->layout_srl}" <!--@if($module_info->mlayout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option> <!--@end-->
<!--@end--> </select>
</select> <p>{$lang->about_layout}</p>
<p>{$lang->about_layout}</p> </td>
</td> </tr>
</tr> <!--@if($module_info->page_type != 'ARTICLE')-->
<!--@if($module_info->page_type != 'ARTICLE')--> <tr>
<tr> <th scope="row">{$lang->page_caching_interval}</th>
<th scope="row">{$lang->page_caching_interval}</th> <td class="text">
<td class="text"> <input type="text" name="page_caching_interval" value="{(int)$module_info->page_caching_interval}" /> {$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>
<p>{$lang->about_page_caching_interval}</p> </td>
</td> </tr>
</tr> <!--@end-->
<!--@end--> <!--@if($module_info->page_type == 'OUTSIDE')-->
<!--@if($module_info->page_type == 'OUTSIDE')--> <tr>
<tr> <th scope="row">{$lang->opage_path}</th>
<th scope="row">{$lang->opage_path}</th> <td class="text">
<td class="text"> <input type="text" name="path" value="{htmlspecialchars($module_info->path)}" />
<input type="text" name="path" value="{htmlspecialchars($module_info->path)}" /> <p>{$lang->about_opage_path}<b>{realpath("./")}</b></p>
<p>{$lang->about_opage_path}<b>{realpath("./")}</b></p> </td>
</td> </tr>
</tr> <tr class="row">
<tr class="row"> <th scope="row">{$lang->opage_mobile_path}</th>
<th scope="row">{$lang->opage_mobile_path}</th> <td class="text">
<td class="text"> <input type="text" name="mpath" value="{htmlspecialchars($module_info->mpath)}" />
<input type="text" name="mpath" value="{htmlspecialchars($module_info->mpath)}" /> <p>{$lang->about_opage_mobile_path}<b>{realpath("./")}</b></p>
<p>{$lang->about_opage_mobile_path}<b>{realpath("./")}</b></p> </td>
</td> </tr>
</tr> <!--@end-->
<!--@end--> <!--@if($module_info->page_type == 'ARTICLE')-->
<!--@if($module_info->page_type == 'ARTICLE')--> <tr>
<tr> <th scope="row">{$lang->skin_fix}</th>
<th scope="row">{$lang->skin_fix}</th> <td class="text">
<td class="text"> <input type="checkbox" name="is_skin_fix" id="is_skin_fix" value="Y" checked="checked"|cond="$module_info->is_skin_fix == 'Y'" />
<input type="checkbox" name="is_skin_fix" id="is_skin_fix" value="Y" checked="checked"|cond="$module_info->is_skin_fix == 'Y'" /> <p>{$lang->about_skin_fix}</p>
<p>{$lang->about_skin_fix}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->skin}</th>
<th scope="row">{$lang->skin}</th> <td class="text">
<td class="text"> <select name="skin">
<select name="skin"> <!--@foreach($skin_list as $key=>$val)-->
<!--@foreach($skin_list as $key=>$val)--> <option value="{$key}" <!--@if($module_info->skin==$key ||(!$module_info->skin && $key=='default'))-->selected="selected"<!--@end-->>{$val->title}</option>
<option value="{$key}" <!--@if($module_info->skin==$key ||(!$module_info->skin && $key=='default'))-->selected="selected"<!--@end-->>{$val->title}</option> <!--@end-->
<!--@end--> </select>
</select> <p>{$lang->about_skin}</p>
<p>{$lang->about_skin}</p> </td>
</td> </tr>
</tr> <tr class="optionnalData articleType">
<tr class="optionnalData articleType"> <th scope="row">{$lang->mobile_skin}</th>
<th scope="row">{$lang->mobile_skin}</th> <td class="text">
<td class="text"> <select name="mskin">
<select name="mskin"> <!--@foreach($mskin_list as $key=>$val)-->
<!--@foreach($mskin_list as $key=>$val)--> <option value="{$key}" <!--@if($module_info->mskin==$key ||(!$module_info->mskin && $key=='default'))-->selected="selected"<!--@end-->>{$val->title}</option>
<option value="{$key}" <!--@if($module_info->mskin==$key ||(!$module_info->mskin && $key=='default'))-->selected="selected"<!--@end-->>{$val->title}</option> <!--@end-->
<!--@end--> </select>
</select> <p>{$lang->about_skin}</p>
<p>{$lang->about_skin}</p> </td>
</td> </tr>
</tr> <!--@end-->
<!--@end--> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
<!--@if($module_info->page_type != 'OUTSIDE')--> <!--@if($module_info->page_type != 'OUTSIDE')-->

View file

@ -9,134 +9,132 @@
<input type="hidden" name="act" value="procPageAdminInsert" /> <input type="hidden" name="act" value="procPageAdminInsert" />
<input type="hidden" name="page" value="{$page}" /> <input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="module_srl" value="{$module_srl}" /> <input type="hidden" name="module_srl" value="{$module_srl}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <!--@if($module_srl)-->
<!--@if($module_srl)--> <tr>
<tr> <th scope="row">{$lang->page_type}</th>
<th scope="row">{$lang->page_type}</th> <td class="text"></td>
<td class="text"></td> </tr>
<!--@else-->
<tr>
<th scope="row">{$lang->page_type}</th>
<td class="text">
<select name="page_type">
<option value="">{$lang->click_choice}</option>
<option value="WIDGET">{$lang->page_type_name['WIDGET']}</option>
<option value="ARTICLE">{$lang->page_type_name['ARTICLE']}</option>
<option value="OUTSIDE">{$lang->page_type_name['OUTSIDE']}</option>
</select>
<p>{$lang->about_page_type}</p>
</td>
</tr> </tr>
<!--@else--> <!--@end-->
<tr> <!--@if($logged_info->is_admin!='Y')-->
<th scope="row">{$lang->page_type}</th> <input type="hidden" name="page_name" value="{$module_info->mid}" />
<td class="text"> <!--@else-->
<select name="page_type"> <tr>
<option value="">{$lang->click_choice}</option> <th scope="row">{$lang->mid}</th>
<option value="WIDGET">{$lang->page_type_name['WIDGET']}</option> <td class="text">
<option value="ARTICLE">{$lang->page_type_name['ARTICLE']}</option> <input type="text" name="page_name" value="{$module_info->mid}" />
<option value="OUTSIDE">{$lang->page_type_name['OUTSIDE']}</option> <p>{$lang->about_mid}</p>
</select> </td>
<p>{$lang->about_page_type}</p> </tr>
</td> <!--@end-->
</tr> <tr>
<!--@end--> <th scope="row">{$lang->module_category}</th>
<!--@if($logged_info->is_admin!='Y')--> <td class="text">
<input type="hidden" name="page_name" value="{$module_info->mid}" /> <select name="module_category_srl">
<!--@else--> <option value="0">{$lang->notuse}</option>
<tr> <!--@foreach($module_category as $key => $val)-->
<th scope="row">{$lang->mid}</th> <option value="{$key}" <!--@if($module_info->module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option>
<td class="text"> <!--@end-->
<input type="text" name="page_name" value="{$module_info->mid}" /> </select>
<p>{$lang->about_mid}</p> <p>{$lang->about_module_category}</p>
</td> </td>
</tr> </tr>
<!--@end--> <tr>
<tr> <th scope="row">{$lang->browser_title}</th>
<th scope="row">{$lang->module_category}</th> <td class="text">
<td class="text"> <input type="text" name="browser_title" value="{$module_info->browser_title}" id="browser_title"/>
<select name="module_category_srl"> <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>
<option value="0">{$lang->notuse}</option> <p>{$lang->about_browser_title}</p>
<!--@foreach($module_category as $key => $val)--> </td>
<option value="{$key}" <!--@if($module_info->module_category_srl==$key)-->selected="selected"<!--@end-->>{$val->title}</option> </tr>
<!--@end--> <tr>
</select> <th scope="row">{$lang->layout}</th>
<p>{$lang->about_module_category}</p> <td class="text">
</td> <select name="layout_srl">
</tr> <option value="0">{$lang->notuse}</option>
<tr> <!--@foreach($layout_list as $key => $val)-->
<th scope="row">{$lang->browser_title}</th> <option value="{$val->layout_srl}" <!--@if($module_info->layout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option>
<td class="text"> <!--@end-->
<input type="text" name="browser_title" value="{$module_info->browser_title}" id="browser_title"/> </select>
<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_layout}</p>
<p>{$lang->about_browser_title}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row">{$lang->mobile_view}</th>
<th scope="row">{$lang->layout}</th> <td class="text">
<td class="text"> <input type="checkbox" name="use_mobile" id="use_mobile" value="Y" <!--@if($module_info->use_mobile == "Y")-->checked="checked"<!--@end--> />
<select name="layout_srl"> <label for="use_mobile">{$lang->about_mobile_view}</label>
<option value="0">{$lang->notuse}</option> </td>
<!--@foreach($layout_list as $key => $val)--> </tr>
<option value="{$val->layout_srl}" <!--@if($module_info->layout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option> <tr>
<!--@end--> <th scope="row">{$lang->mobile_layout}</th>
</select> <td class="text">
<p>{$lang->about_layout}</p> <select name="mlayout_srl">
</td> <option value="0">{$lang->notuse}</option>
</tr> <!--@foreach($mlayout_list as $key => $val)-->
<tr> <option value="{$val->layout_srl}" <!--@if($module_info->mlayout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option>
<th scope="row">{$lang->mobile_view}</th> <!--@end-->
<td class="text"> </select>
<input type="checkbox" name="use_mobile" id="use_mobile" value="Y" <!--@if($module_info->use_mobile == "Y")-->checked="checked"<!--@end--> /> <p>{$lang->about_layout}</p>
<label for="use_mobile">{$lang->about_mobile_view}</label> </td>
</td> </tr>
</tr> <tr class="optionnalData widgetType outsideType">
<tr> <th scope="row">{$lang->page_caching_interval}</th>
<th scope="row">{$lang->mobile_layout}</th> <td class="text">
<td class="text"> <input type="text" name="page_caching_interval" value="{(int)$module_info->caching_interval}" /> {$lang->unit_min}
<select name="mlayout_srl"> <p>{$lang->about_page_caching_interval}</p>
<option value="0">{$lang->notuse}</option> </td>
<!--@foreach($mlayout_list as $key => $val)--> </tr>
<option value="{$val->layout_srl}" <!--@if($module_info->mlayout_srl==$val->layout_srl)-->selected="selected"<!--@end-->>{$val->title} ({$val->layout})</option> <tr class="optionnalData articleType">
<!--@end--> <th scope="row">{$lang->skin}</th>
</select> <td class="text">
<p>{$lang->about_layout}</p> <select name="skin">
</td> <!--@foreach($skin_list as $key=>$val)-->
</tr> <option value="{$key}" <!--@if($module_info->skin==$key ||(!$module_info->skin && $key=='default'))-->selected="selected"<!--@end-->>{$val->title}</option>
<tr class="optionnalData widgetType outsideType"> <!--@end-->
<th scope="row">{$lang->page_caching_interval}</th>
<td class="text">
<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="optionnalData articleType">
<th scope="row">{$lang->skin}</th>
<td class="text">
<select name="skin">
<!--@foreach($skin_list as $key=>$val)-->
<option value="{$key}" <!--@if($module_info->skin==$key ||(!$module_info->skin && $key=='default'))-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select>
<p>{$lang->about_skin}</p>
</td>
</tr>
<tr class="optionnalData articleType">
<th scope="row">{$lang->mobile_skin}</th>
<td class="text">
<select name="mskin">
<!--@foreach($mskin_list as $key=>$val)-->
<option value="{$key}" <!--@if($module_info->mskin==$key ||(!$module_info->mskin && $key=='default'))-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select> </select>
<p>{$lang->about_skin}</p> <p>{$lang->about_skin}</p>
</td> </td>
</tr> </tr>
<tr class="row optionnalData outsideType"> <tr class="optionnalData articleType">
<th scope="row">{$lang->opage_path}</th> <th scope="row">{$lang->mobile_skin}</th>
<td class="text"> <td class="text">
<input type="text" name="path" value="{htmlspecialchars($module_info->path)}" /> <select name="mskin">
<p>{$lang->about_opage_path}<b>{realpath("./")}</b></p> <!--@foreach($mskin_list as $key=>$val)-->
<option value="{$key}" <!--@if($module_info->mskin==$key ||(!$module_info->mskin && $key=='default'))-->selected="selected"<!--@end-->>{$val->title}</option>
<!--@end-->
</select>
<p>{$lang->about_skin}</p>
</td>
</tr>
<tr class="row optionnalData outsideType">
<th scope="row">{$lang->opage_path}</th>
<td class="text">
<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 class="text">
<input type="text" name="mpath" value="{htmlspecialchars($module_info->mpath)}" />
<p>{$lang->about_opage_mobile_path}<b>{realpath("./")}</b></p>
</td> </td>
</tr> </tr>
<tr class="row optionnalData outsideType"> </table>
<th scope="row">{$lang->opage_mobile_path}</th>
<td class="text">
<input type="text" name="mpath" value="{htmlspecialchars($module_info->mpath)}" />
<p>{$lang->about_opage_mobile_path}<b>{realpath("./")}</b></p>
</td>
</tr>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
</div> </div>

View file

@ -6,34 +6,32 @@
<form action="./" method="post" id="fo_point"> <form action="./" method="post" id="fo_point">
<input type="hidden" name="module" value="point" /> <input type="hidden" name="module" value="point" />
<input type="hidden" name="act" value="procPointAdminInsertModuleConfig" /> <input type="hidden" name="act" value="procPointAdminInsertModuleConfig" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table class="x_table x_table-striped x_table-hover"> <thead>
<thead> <tr>
<tr> <th scope="col">{$lang->module}</th>
<th scope="col">{$lang->module}</th> <th scope="col">{$lang->point_insert_document}</th>
<th scope="col">{$lang->point_insert_document}</th> <th scope="col">{$lang->point_insert_comment}</th>
<th scope="col">{$lang->point_insert_comment}</th> <th scope="col">{$lang->point_upload_file}</th>
<th scope="col">{$lang->point_upload_file}</th> <th scope="col">{$lang->point_download_file}</th>
<th scope="col">{$lang->point_download_file}</th> <th scope="col">{$lang->point_read_document}</th>
<th scope="col">{$lang->point_read_document}</th> <th scope="col">{$lang->point_voted}</th>
<th scope="col">{$lang->point_voted}</th> <th scope="col">{$lang->point_blamed}</th>
<th scope="col">{$lang->point_blamed}</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> <tr loop="$mid_list => $key,$val">
<tr loop="$mid_list => $key,$val"> <th scope="row">{$val->browser_title}({$val->mid})</th>
<th scope="row">{$val->browser_title}({$val->mid})</th> <td><input type="text" style="width:30px;text-align:right" name="insert_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_document']}" /> {$config->point_name}</td>
<td><input type="text" style="width:30px;text-align:right" name="insert_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_document']}" /> {$config->point_name}</td> <td><input type="text" style="width:30px;text-align:right" name="insert_comment_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_comment']}" /> {$config->point_name}</td>
<td><input type="text" style="width:30px;text-align:right" name="insert_comment_{$val->module_srl}" value="{$module_config[$val->module_srl]['insert_comment']}" /> {$config->point_name}</td> <td><input type="text" style="width:30px;text-align:right" name="upload_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['upload_file']}" /> {$config->point_name}</td>
<td><input type="text" style="width:30px;text-align:right" name="upload_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['upload_file']}" /> {$config->point_name}</td> <td><input type="text" style="width:30px;text-align:right" name="download_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['download_file']}" /> {$config->point_name}</td>
<td><input type="text" style="width:30px;text-align:right" name="download_file_{$val->module_srl}" value="{$module_config[$val->module_srl]['download_file']}" /> {$config->point_name}</td> <td><input type="text" style="width:30px;text-align:right" name="read_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['read_document']}" /> {$config->point_name}</td>
<td><input type="text" style="width:30px;text-align:right" name="read_document_{$val->module_srl}" value="{$module_config[$val->module_srl]['read_document']}" /> {$config->point_name}</td> <td><input type="text" style="width:30px;text-align:right" name="voted_{$val->module_srl}" value="{$module_config[$val->module_srl]['voted']}" /> {$config->point_name}</td>
<td><input type="text" style="width:30px;text-align:right" name="voted_{$val->module_srl}" value="{$module_config[$val->module_srl]['voted']}" /> {$config->point_name}</td> <td><input type="text" style="width:30px;text-align:right" name="blamed_{$val->module_srl}" value="{$module_config[$val->module_srl]['blamed']}" /> {$config->point_name}</td>
<td><input type="text" style="width:30px;text-align:right" name="blamed_{$val->module_srl}" value="{$module_config[$val->module_srl]['blamed']}" /> {$config->point_name}</td> </tr>
</tr> </tbody>
</tbody> </table>
</table>
</div>
<div class="x_clearfix"> <div class="x_clearfix">
<span class="x_pull-right"><input class="x_btn x_btn-large x_btn-primary" type="submit" value="{$lang->cmd_registration}" /></span> <span class="x_pull-right"><input class="x_btn x_btn-large x_btn-primary" type="submit" value="{$lang->cmd_registration}" /></span>
</div> </div>

View file

@ -7,38 +7,36 @@
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" /> <input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
<h3 class="h3">{$lang->point}</h3> <h3 class="h3">{$lang->point}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><label for="insert_document">{$lang->point_insert_document}</label></th>
<th scope="row"><label for="insert_document">{$lang->point_insert_document}</label></th> <td class="text"><input type="text" name="insert_document" id="insert_document" value="{$module_config['insert_document']}" style="width:30px" /> {$module_config['point_name']}</td>
<td class="text"><input type="text" name="insert_document" id="insert_document" value="{$module_config['insert_document']}" style="width:30px" /> {$module_config['point_name']}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="insert_comment">{$lang->point_insert_comment}</label></th>
<th scope="row"><label for="insert_comment">{$lang->point_insert_comment}</label></th> <td class="text"><input type="text" name="insert_comment" id="insert_comment" value="{$module_config['insert_comment']}" style="width:30px" /> {$module_config['point_name']}</td>
<td class="text"><input type="text" name="insert_comment" id="insert_comment" value="{$module_config['insert_comment']}" style="width:30px" /> {$module_config['point_name']}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="upload_file">{$lang->point_upload_file}</label></th>
<th scope="row"><label for="upload_file">{$lang->point_upload_file}</label></th> <td class="text"><input type="text" name="upload_file" id="upload_file" value="{$module_config['upload_file']}" style="width:30px" /> {$module_config['point_name']}</td>
<td class="text"><input type="text" name="upload_file" id="upload_file" value="{$module_config['upload_file']}" style="width:30px" /> {$module_config['point_name']}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="download_file">{$lang->point_download_file}</label></th>
<th scope="row"><label for="download_file">{$lang->point_download_file}</label></th> <td class="text"><input type="text" name="download_file" id="download_file" value="{$module_config['download_file']}" style="width:30px" /> {$module_config['point_name']}</td>
<td class="text"><input type="text" name="download_file" id="download_file" value="{$module_config['download_file']}" style="width:30px" /> {$module_config['point_name']}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="read_document">{$lang->point_read_document}</label></th>
<th scope="row"><label for="read_document">{$lang->point_read_document}</label></th> <td class="text"><input type="text" name="read_document" id="read_document" value="{$module_config['read_document']}" style="width:30px" /> {$module_config['point_name']}</td>
<td class="text"><input type="text" name="read_document" id="read_document" value="{$module_config['read_document']}" style="width:30px" /> {$module_config['point_name']}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="voted">{$lang->point_voted}</label></th>
<th scope="row"><label for="voted">{$lang->point_voted}</label></th> <td class="text"><input type="text" name="voted" id="voted" value="{$module_config['voted']}" style="width:30px" /> {$module_config['point_name']}</td>
<td class="text"><input type="text" name="voted" id="voted" value="{$module_config['voted']}" style="width:30px" /> {$module_config['point_name']}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="blamed">{$lang->point_blamed}</label></th>
<th scope="row"><label for="blamed">{$lang->point_blamed}</label></th> <td class="text"><input type="text" name="blamed" id="blamed" value="{$module_config['blamed']}" style="width:30px" /> {$module_config['point_name']}</td>
<td class="text"><input type="text" name="blamed" id="blamed" value="{$module_config['blamed']}" style="width:30px" /> {$module_config['point_name']}</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
<span class="btn"><button type="button" onclick="doPointReset('{$module_config['module_srl']?$module_config['module_srl']:$module_srls}')">{$lang->cmd_reset}</button></span> <span class="btn"><button type="button" onclick="doPointReset('{$module_config['module_srl']?$module_config['module_srl']:$module_srls}')">{$lang->cmd_reset}</button></span>

View file

@ -7,31 +7,29 @@
<form ruleset="insertConfig" action="./" method="post" id="fo_poll"> <form ruleset="insertConfig" action="./" method="post" id="fo_poll">
<input type="hidden" name="module" value="poll" /> <input type="hidden" name="module" value="poll" />
<input type="hidden" name="act" value="procPollAdminInsertConfig" /> <input type="hidden" name="act" value="procPollAdminInsertConfig" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="col">{$lang->skin}</th>
<th scope="col">{$lang->skin}</th> <td>
<td> <select name="skin" onchange="doDisplaySkinColorset(this);return false;">
<select name="skin" onchange="doDisplaySkinColorset(this);return false;"> <!--@foreach($skin_list as $key => $val)-->
<!--@foreach($skin_list as $key => $val)--> <option value="{$key}" <!--@if($config->skin == $key)-->selected="selected"<!--@end-->>{$val->title} ({htmlspecialchars($key)})</option>
<option value="{$key}" <!--@if($config->skin == $key)-->selected="selected"<!--@end-->>{$val->title} ({htmlspecialchars($key)})</option> <!--@end-->
<!--@end--> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="col">{$lang->colorset}</th>
<th scope="col">{$lang->colorset}</th> <td>
<td> <select name="colorset" id="poll_colorset">
<select name="colorset" id="poll_colorset"> <!--@foreach($colorset_list as $key => $val)-->
<!--@foreach($colorset_list as $key => $val)--> <option value="{$val->name}" <!--@if($config->colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title} ({$val->name})</option>
<option value="{$val->name}" <!--@if($config->colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title} ({$val->name})</option> <!--@end-->
<!--@end--> </select>
</select> </td>
</td> </tr>
</tr> </tbody>
</tbody> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
</div> </div>

View file

@ -70,20 +70,18 @@ xe.lang.confirm_poll_delete = '{$lang->confirm_poll_delete}';
<input type="hidden" name="module" value="poll" /> <input type="hidden" name="module" value="poll" />
<input type="hidden" name="act" value="procPollAdminDeleteChecked" /> <input type="hidden" name="act" value="procPollAdminDeleteChecked" />
<input type="hidden" name="page" value="{$page}" /> <input type="hidden" name="page" value="{$page}" />
<div class="table"> <table width="100%" border="1" cellspacing="0" id="pollManageListTable">
<table width="100%" border="1" cellspacing="0" id="pollManageListTable"> <caption>{$lang->selected_poll} <strong id="selectedPollCount"></strong></caption>
<caption>{$lang->selected_poll} <strong id="selectedPollCount"></strong></caption> <thead>
<thead> <tr>
<tr> <th scope="col" class="text">{$lang->title}</th>
<th scope="col" class="text">{$lang->title}</th> <th scope="col">{$lang->poll_join_count}</th>
<th scope="col">{$lang->poll_join_count}</th> <th scope="col">{$lang->author}</th>
<th scope="col">{$lang->author}</th> </tr>
</tr> </thead>
</thead> <tbody>
<tbody> </tbody>
</tbody> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="Delete" /></span> <span class="btn"><input type="submit" value="Delete" /></span>
</div> </div>

View file

@ -6,43 +6,41 @@
<h3 class="h3">{$lang->open_rss}</h3> <h3 class="h3">{$lang->open_rss}</h3>
<p>{$lang->about_open_rss}</p> <p>{$lang->about_open_rss}</p>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><label for="open_rss">{$lang->open_rss}</label></th>
<th scope="row"><label for="open_rss">{$lang->open_rss}</label></th> <td class="text">
<td class="text"> <select name="open_rss" id="open_rss">
<select name="open_rss" id="open_rss"> <!--@foreach($lang->open_rss_types as $key=>$val)-->
<!--@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>
<option value="{$key}" <!--@if(!$rss_config->open_rss && $key=='N')-->selected="selected"<!--@elseif($rss_config->open_rss==$key)-->selected="selected"<!--@end-->>{$val}</option> <!--@end-->
<!--@end--> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="open_total_feed">{$lang->open_feed_to_total}</label></th>
<th scope="row"><label for="open_total_feed">{$lang->open_feed_to_total}</label></th> <td class="text">
<td class="text"> <select name="open_total_feed" id="open_total_feed">
<select name="open_total_feed" id="open_total_feed"> <option value="N" <!--@if(!$rss_config->open_total_feed || $rss_config->open_total_feed == 'N')-->selected="selected"<!--@end-->>{$lang->use}</option>
<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>
<option value="T_N" <!--@if($rss_config->open_total_feed == 'T_N')-->selected="selected"<!--@end-->>{$lang->notuse}</option> </select>
</select> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="feed_description">{$lang->description}</label></th>
<th scope="row"><label for="feed_description">{$lang->description}</label></th> <td class="text">
<td class="text"> <textarea name="feed_description" id="feed_description" rows="8" cols="42">{$rss_config->feed_description}</textarea>
<textarea name="feed_description" id="feed_description" rows="8" cols="42">{$rss_config->feed_description}</textarea> <p class="desc">{$lang->about_feed_description}</p>
<p class="desc">{$lang->about_feed_description}</p> </td>
</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="feed_copyright">{$lang->feed_copyright}</label></th>
<th scope="row"><label for="feed_copyright">{$lang->feed_copyright}</label></th> <td class="text">
<td class="text"> <input type="text" name="feed_copyright" id="feed_copyright" value="{htmlspecialchars($rss_config->feed_copyright)}" />
<input type="text" name="feed_copyright" id="feed_copyright" value="{htmlspecialchars($rss_config->feed_copyright)}" /> <p class="desc">{$lang->about_feed_copyright}</p>
<p class="desc">{$lang->about_feed_copyright}</p> </td>
</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span>
</div> </div>

View file

@ -6,33 +6,31 @@
<input type="hidden" name="module" value="trackback" /> <input type="hidden" name="module" value="trackback" />
<input type="hidden" name="act" value="procTrackbackSend" /> <input type="hidden" name="act" value="procTrackbackSend" />
<input type="hidden" name="target_srl" value="{$oDocument->document_srl}" /> <input type="hidden" name="target_srl" value="{$oDocument->document_srl}" />
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><label>{$lang->title}</label></th>
<th scope="row"><label>{$lang->title}</label></th> <td>{$oDocument->getTitleText()}</td>
<td>{$oDocument->getTitleText()}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label>{$lang->content}</label></th>
<th scope="row"><label>{$lang->content}</label></th> <td>{$oDocument->getSummary()}</td>
<td>{$oDocument->getSummary()}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="textfield1">{$lang->send_trackback_url}</label></th>
<th scope="row"><label for="textfield1">{$lang->send_trackback_url}</label></th> <td>
<td> <input type="text" id="textfield1" name="trackback_url" value="" />
<input type="text" id="textfield1" name="trackback_url" value="" /> <select name="charset">
<select name="charset"> <option value='UTF-8'>UTF-8</option>
<option value='UTF-8'>UTF-8</option> <option value='EUC-KR'>EUC-KR</option>
<option value='EUC-KR'>EUC-KR</option> <option value='EUC-JP'>EUC-JP</option>
<option value='EUC-JP'>EUC-JP</option> <option value='SHIFT_JIS'>SHIFT_JIS</option>
<option value='SHIFT_JIS'>SHIFT_JIS</option> <option value='EUC-CN'>EUC-CN</option>
<option value='EUC-CN'>EUC-CN</option> <option value='HZ'>HZ</option>
<option value='HZ'>HZ</option> <option value='BIG5'>BIG5</option>
<option value='BIG5'>BIG5</option> </select>
</select> </td>
</td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_send_trackback}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_send_trackback}" /></span>
</div> </div>

View file

@ -5,14 +5,12 @@
<input type="hidden" name="target_module_srl" value="{$trackback_config->module_srl?$trackback_config->module_srl:$module_srls}" /> <input type="hidden" name="target_module_srl" value="{$trackback_config->module_srl?$trackback_config->module_srl:$module_srls}" />
<h3 class="h3">{$lang->trackback}</h3> <h3 class="h3">{$lang->trackback}</h3>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><label for="enable_trackback">{$lang->enable_trackback}</label></th>
<th scope="row"><label for="enable_trackback">{$lang->enable_trackback}</label></th> <td class="text"><input type="checkbox" name="enable_trackback" id="enable_trackback" value="Y" <!--@if($trackback_config->enable_trackback == "Y")-->checked="checked"<!--@end--> /></td>
<td class="text"><input type="checkbox" name="enable_trackback" id="enable_trackback" value="Y" <!--@if($trackback_config->enable_trackback == "Y")-->checked="checked"<!--@end--> /></td> </tr>
</tr> </table>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}"/></span>
</div> </div>

View file

@ -1,86 +1,81 @@
<load target="../../admin/tpl/css/admin.css" usecdn="true" /> <load target="../../admin/tpl/css/admin.css" usecdn="true" />
<h1 class="h1">{$skin_info->title}</h1> <h1 class="h1">{$skin_info->title}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="100" />
<col width="100" /> <col />
<col /> <tr>
<tr> <th scope="row"><label for="textfield1">{$lang->title}</label></th>
<th scope="row"><label for="textfield1">{$lang->title}</label></th> <td>{$skin_info->title}</td>
<td>{$skin_info->title}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><label for="textfield2">{$lang->author}</label></th>
<th scope="row"><label for="textfield2">{$lang->author}</label></th> <td class="blue">
<td class="blue"> <!--@foreach($skin_info->author as $author)-->
<!--@foreach($skin_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 />
{$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-->
<!--@endforeach--> </td>
</td> </tr>
</tr> <!--@if($skin_info->homepage)-->
<!--@if($skin_info->homepage)--> <tr>
<tr> <th scope="row"><label for="textfield2">{$lang->homepage}</label></th>
<th scope="row"><label for="textfield2">{$lang->homepage}</label></th> <td class="blue"><a href="{$skin_info->homepage}" onclick="window.open(this.href);return false;">{$skin_info->homepage}</a></td>
<td class="blue"><a href="{$skin_info->homepage}" onclick="window.open(this.href);return false;">{$skin_info->homepage}</a></td> </tr>
</tr> <!--@endif-->
<!--@endif--> <tr>
<tr> <th scope="row"><label for="textfield2">{$lang->regdate}</label></th>
<th scope="row"><label for="textfield2">{$lang->regdate}</label></th> <td>{zdate($skin_info->date, 'Y-m-d')}</td>
<td>{zdate($skin_info->date, 'Y-m-d')}</td> </tr>
</tr> <!--@if($skin_info->license || $skin_info->license_link)-->
<!--@if($skin_info->license || $skin_info->license_link)--> <tr>
<tr> <th scope="row">{$lang->skin_license}</th>
<th scope="row">{$lang->skin_license}</th> <td>
<td> {nl2br(trim($skin_info->license))}
{nl2br(trim($skin_info->license))} <!--@if($skin_info->license_link)-->
<!--@if($skin_info->license_link)--> <p><a href="{$skin_info->license_link}" onclick="window.close(); return false;">{$skin_info->license_link}</a></p>
<p><a href="{$skin_info->license_link}" onclick="window.close(); return false;">{$skin_info->license_link}</a></p> <!--@end-->
<!--@end--> </td>
</td> </tr>
</tr> <!--@end-->
<!--@end--> <!--@if($skin_info->description)-->
<!--@if($skin_info->description)--> <tr>
<tr> <th scope="row" class="borderBottomNone">{$lang->description}</th>
<th scope="row" class="borderBottomNone">{$lang->description}</th> <td class="borderBottomNone">{nl2br(trim($skin_info->description))}</td>
<td class="borderBottomNone">{nl2br(trim($skin_info->description))}</td> </tr>
</tr> <!--@end-->
<!--@end--> </table>
</table>
</div>
<!--@if($skin_info->history)--> <!--@if($skin_info->history)-->
<h1 class="h1">{$lang->skin_history}</h1> <h1 class="h1">{$lang->skin_history}</h1>
<table class="x_table x_table-striped x_table-hover">
<col width="100" />
<col />
<div class="table"> <!--@foreach($skin_info->history as $history)-->
<table width="100%" border="1" cellspacing="0"> <tr>
<col width="100" /> <th scope="row">
<col /> {$history->version}<br />
{$history->date}
<!--@foreach($skin_info->history as $history)--> </th>
<tr> <td>
<th scope="row"> <!--@foreach($history->author as $author)-->
{$history->version}<br /> <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>
{$history->date} <!--@endforeach-->
</th> <!--@if($history->description)-->
<td> <p>{nl2br(trim($history->description))}</p>
<!--@foreach($history->author as $author)--> <!--@endif-->
<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> <!--@if($history->logs)-->
<!--@endforeach--> <ul>
<!--@if($history->description)--> <!--@foreach($history->logs as $log)-->
<p>{nl2br(trim($history->description))}</p> <!--@if($log->link)-->
<!--@endif--> <li><a href="{$log->link}">{$log->text}</a></li>
<!--@if($history->logs)--> <!--@else-->
<ul> <li>{$log->text}</li>
<!--@foreach($history->logs as $log)--> <!--@endif-->
<!--@if($log->link)--> <!--@endforeach-->
<li><a href="{$log->link}">{$log->text}</a></li> </ul>
<!--@else--> <!--@endif-->
<li>{$log->text}</li> </td>
<!--@endif--> </tr>
<!--@endforeach--> <!--@endforeach-->
</ul> </table>
<!--@endif-->
</td>
</tr>
<!--@endforeach-->
</table>
</div>
<!--@endif--> <!--@endif-->

View file

@ -3,78 +3,74 @@
<h1 class="h1">{$lang->widget}</h1> <h1 class="h1">{$lang->widget}</h1>
<h2 class="h2">{$lang->widget_maker}</h2> <h2 class="h2">{$lang->widget_maker}</h2>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <tr>
<tr> <th scope="row"><div>{$lang->title}</div></th>
<th scope="row"><div>{$lang->title}</div></th> <td>{$widget_info->title} ver {$widget_info->version}</td>
<td>{$widget_info->title} ver {$widget_info->version}</td> </tr>
</tr> <tr>
<tr> <th scope="row"><div>{$lang->author}</div></th>
<th scope="row"><div>{$lang->author}</div></th> <td>
<td> <!--@foreach($widget_info->author as $author)-->
<!--@foreach($widget_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 />
{$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-->
<!--@endforeach--> </td>
</td> </tr>
</tr> <!--@if($widget_info->homepage)-->
<!--@if($widget_info->homepage)--> <tr>
<tr> <th scope="row"><div>{$lang->homepage}</div></th>
<th scope="row"><div>{$lang->homepage}</div></th> <td><a href="{$widget_info->homepage}" onclick="window.open(this.href);return false;">{$widget_info->homepage}</a></td>
<td><a href="{$widget_info->homepage}" onclick="window.open(this.href);return false;">{$widget_info->homepage}</a></td> </tr>
</tr> <!--@end-->
<!--@end--> <tr>
<tr> <th scope="row"><div>{$lang->regdate}</div></th>
<th scope="row"><div>{$lang->regdate}</div></th> <td>{zdate($widget_info->date, 'Y-m-d')}</td>
<td>{zdate($widget_info->date, 'Y-m-d')}</td> </tr>
</tr> <!--@if($widget_info->license || $widget_info->license_link)-->
<!--@if($widget_info->license || $widget_info->license_link)--> <tr>
<tr> <th scope="row"><div>{$lang->widget_license}</div></th>
<th scope="row"><div>{$lang->widget_license}</div></th> <td>
<td> {nl2br(trim($widget_info->license))}
{nl2br(trim($widget_info->license))} <!--@if($widget_info->license_link)-->
<!--@if($widget_info->license_link)--> <p><a href="{$widget_info->license_link}" onclick="window.close(); return false;">{$widget_info->license_link}</a></p>
<p><a href="{$widget_info->license_link}" onclick="window.close(); return false;">{$widget_info->license_link}</a></p> <!--@end-->
<!--@end--> </td>
</td> </tr><!--@end-->
</tr><!--@end-->
<!--@if($widget_info->description)--> <!--@if($widget_info->description)-->
<tr> <tr>
<th scope="row"><div>{$lang->description}</div></th> <th scope="row"><div>{$lang->description}</div></th>
<td>{nl2br(trim($widget_info->description))}</td> <td>{nl2br(trim($widget_info->description))}</td>
</tr><!--@end--> </tr><!--@end-->
</table> </table>
</div>
<!--@if($widget_info->history)--> <!--@if($widget_info->history)-->
<h1 class="h1">{$lang->widget_history}</h1> <h1 class="h1">{$lang->widget_history}</h1>
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <!--@foreach($widget_info->history as $history)-->
<!--@foreach($widget_info->history as $history)--> <tr>
<tr> <th scope="row"><div>
<th scope="row"><div> {$history->version}<br />
{$history->version}<br /> {$history->date}
{$history->date} </div></th>
</div></th> <td>
<td> <!--@if($history->author)-->
<!--@if($history->author)--> <!--@foreach($history->author as $author)-->
<!--@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>
<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-->
<!--@endforeach--> <!--@endif-->
<!--@endif-->
<!--@if($history->description)--> <!--@if($history->description)-->
<p>{nl2br(trim($history->description))}</p> <p>{nl2br(trim($history->description))}</p>
<!--@endif--> <!--@endif-->
<!--@if($history->logs)--> <!--@if($history->logs)-->
<ul> <ul>
<!--@foreach($history->logs as $log)--><li>{$log->text}</li><!--@endforeach--> <!--@foreach($history->logs as $log)--><li>{$log->text}</li><!--@endforeach-->
</ul> </ul>
<!--@endif--> <!--@endif-->
</td> </td>
</tr> </tr>
<!--@endforeach--> <!--@endforeach-->
</table> </table>
</div>
<!--@endif--> <!--@endif-->

View file

@ -1,110 +1,108 @@
<div id="tmpPageSizeLayer" class="layer x"> <div id="tmpPageSizeLayer" class="layer x">
<form action="index.php"> <form action="index.php">
<div class="table"> <table class="x_table x_table-striped x_table-hover">
<table width="100%" border="1" cellspacing="0"> <col width="140" />
<col width="140" /> <col />
<col /> <col />
<col /> <tr>
<tr> <th>{$lang->cmd_widget_align}</th>
<th>{$lang->cmd_widget_align}</th> <td colspan="2">
<td colspan="2"> <select name="widget_align">
<select name="widget_align"> <option value="left">{$lang->cmd_widget_align_left}</option>
<option value="left">{$lang->cmd_widget_align_left}</option> <option value="right">{$lang->cmd_widget_align_right}</option>
<option value="right">{$lang->cmd_widget_align_right}</option> </select>
</td>
</tr>
<tr>
<th class="line">{$lang->cmd_widget_size}</th>
<td colspan="2" class="line"><input type="text" name="width" class="input" value="" /> - <input type="text" class="input" name="height" value="" /></td>
</tr>
<tr>
<th rowspan="3" class="line">{$lang->cmd_widget_margin}</th>
<td colspan="2" class="line tCenter"><input type="text" name="margin_top" class="input" value="" />px</td>
</tr>
<tr>
<td><input type="text" name="margin_left" class="input" value="" />px</td>
<td class="tRight"><input type="text" name="margin_right" class="input" value="" />px</td>
</tr>
<tr>
<td colspan="2" class="tCenter"><input type="text" name="margin_bottom" class="input" value="" />px</td>
</tr>
<tr>
<th rowspan="3" class="line">{$lang->cmd_widget_padding}</th>
<td colspan="2" class="line tCenter"><input type="text" name="padding_top" class="input" value="" />px</td>
</tr>
<tr>
<td><input type="text" name="padding_left" class="input" value="" />px</td>
<td class="tRight"><input type="text" name="padding_right" class="input" value="" />px</td>
</tr>
<tr>
<td colspan="2" class="tCenter"><input type="text" name="padding_bottom" class="input" value="" />px</td>
</tr>
<tr>
<th rowspan="3" class="line">{$lang->cmd_widget_border}</th>
<td colspan="2" class="tCenter line">
<input type="text" name="border_top_thick" value="" class="small_input" />px
<select name="border_top_type">
<option value="solid">{$lang->cmd_widget_border_solid}</option>
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
</select>
#<input type="text" name="border_top_color" value="" class="color_input" maxlength="6"/>
</td>
</tr>
<tr>
<td>
<input type="text" name="border_left_thick" value="" class="small_input" />px
<select name="border_left_type">
<option value="solid">{$lang->cmd_widget_border_solid}</option>
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
</select>
#<input type="text" name="border_left_color" value="" class="color_input" maxlength="6"/>
</td>
<td class="tRight">
<input type="text" name="border_right_thick" value="" class="small_input" />px
<select name="border_right_type">
<option value="solid">{$lang->cmd_widget_border_solid}</option>
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
</select>
#<input type="text" name="border_right_color" value="" class="color_input" maxlength="6"/>
</td>
</tr>
<tr>
<td colspan="2" class="tCenter">
<input type="text" name="border_bottom_thick" value="" class="small_input" />px
<select name="border_bottom_type">
<option value="solid">{$lang->cmd_widget_border_solid}</option>
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
</select>
#<input type="text" name="border_bottom_color" value="" class="color_input" maxlength="6"/>
</td>
</tr>
<tr>
<th class="line">{$lang->cmd_widget_background_color}</th>
<td colspan="2" class="line"><input type="text" name="background_color" value="" class="input" /></td>
</tr>
<tr>
<th class="line">{$lang->cmd_widget_background_image_url}</th>
<td colspan="2" class="line">
<div><input type="text" name="background_image_url" value="" class="full_input"/></div>
<div>
<select name="background_repeat">
<option value="repeat">{$lang->cmd_widget_background_image_repeat}</option>
<option value="no-repeat">{$lang->cmd_widget_background_image_no_repeat}</option>
<option value="repeat-x">{$lang->cmd_widget_background_image_x_repeat}</option>
<option value="repeat-y">{$lang->cmd_widget_background_image_y_repeat}</option>
</select> </select>
</td> </div>
</tr> <div>
<tr> {$lang->cmd_widget_background_image_x} : <input type="text" name="background_x" value="0" class="input" />
<th class="line">{$lang->cmd_widget_size}</th> </div>
<td colspan="2" class="line"><input type="text" name="width" class="input" value="" /> - <input type="text" class="input" name="height" value="" /></td> <div>
</tr> {$lang->cmd_widget_background_image_y} : <input type="text" name="background_y" value="0" class="input" />
<tr> </div>
<th rowspan="3" class="line">{$lang->cmd_widget_margin}</th> </td>
<td colspan="2" class="line tCenter"><input type="text" name="margin_top" class="input" value="" />px</td> </tr>
</tr> </table>
<tr>
<td><input type="text" name="margin_left" class="input" value="" />px</td>
<td class="tRight"><input type="text" name="margin_right" class="input" value="" />px</td>
</tr>
<tr>
<td colspan="2" class="tCenter"><input type="text" name="margin_bottom" class="input" value="" />px</td>
</tr>
<tr>
<th rowspan="3" class="line">{$lang->cmd_widget_padding}</th>
<td colspan="2" class="line tCenter"><input type="text" name="padding_top" class="input" value="" />px</td>
</tr>
<tr>
<td><input type="text" name="padding_left" class="input" value="" />px</td>
<td class="tRight"><input type="text" name="padding_right" class="input" value="" />px</td>
</tr>
<tr>
<td colspan="2" class="tCenter"><input type="text" name="padding_bottom" class="input" value="" />px</td>
</tr>
<tr>
<th rowspan="3" class="line">{$lang->cmd_widget_border}</th>
<td colspan="2" class="tCenter line">
<input type="text" name="border_top_thick" value="" class="small_input" />px
<select name="border_top_type">
<option value="solid">{$lang->cmd_widget_border_solid}</option>
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
</select>
#<input type="text" name="border_top_color" value="" class="color_input" maxlength="6"/>
</td>
</tr>
<tr>
<td>
<input type="text" name="border_left_thick" value="" class="small_input" />px
<select name="border_left_type">
<option value="solid">{$lang->cmd_widget_border_solid}</option>
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
</select>
#<input type="text" name="border_left_color" value="" class="color_input" maxlength="6"/>
</td>
<td class="tRight">
<input type="text" name="border_right_thick" value="" class="small_input" />px
<select name="border_right_type">
<option value="solid">{$lang->cmd_widget_border_solid}</option>
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
</select>
#<input type="text" name="border_right_color" value="" class="color_input" maxlength="6"/>
</td>
</tr>
<tr>
<td colspan="2" class="tCenter">
<input type="text" name="border_bottom_thick" value="" class="small_input" />px
<select name="border_bottom_type">
<option value="solid">{$lang->cmd_widget_border_solid}</option>
<option value="dotted">{$lang->cmd_widget_border_dotted}</option>
</select>
#<input type="text" name="border_bottom_color" value="" class="color_input" maxlength="6"/>
</td>
</tr>
<tr>
<th class="line">{$lang->cmd_widget_background_color}</th>
<td colspan="2" class="line"><input type="text" name="background_color" value="" class="input" /></td>
</tr>
<tr>
<th class="line">{$lang->cmd_widget_background_image_url}</th>
<td colspan="2" class="line">
<div><input type="text" name="background_image_url" value="" class="full_input"/></div>
<div>
<select name="background_repeat">
<option value="repeat">{$lang->cmd_widget_background_image_repeat}</option>
<option value="no-repeat">{$lang->cmd_widget_background_image_no_repeat}</option>
<option value="repeat-x">{$lang->cmd_widget_background_image_x_repeat}</option>
<option value="repeat-y">{$lang->cmd_widget_background_image_y_repeat}</option>
</select>
</div>
<div>
{$lang->cmd_widget_background_image_x} : <input type="text" name="background_x" value="0" class="input" />
</div>
<div>
{$lang->cmd_widget_background_image_y} : <input type="text" name="background_y" value="0" class="input" />
</div>
</td>
</tr>
</table>
</div>
<div class="btnArea"> <div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span> <span class="btn"><input type="submit" value="{$lang->cmd_save}" /></span>
</div> </div>