mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
apply cdn
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9200 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
ca245b93fd
commit
604833cae8
93 changed files with 265 additions and 262 deletions
|
|
@ -7,6 +7,6 @@
|
|||
* @brief Automatic link add-on
|
||||
**/
|
||||
if($called_position == 'after_module_proc' && Context::getResponseMethod()!="XMLRPC") {
|
||||
Context::addJsFile('./addons/autolink/autolink.js', false ,'', null, 'body');
|
||||
Context::loadFile(array('./addons/autolink/autolink.js', 'body', '', null), true);
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@
|
|||
if(Context::getRequestMethod()!='XMLRPC' && Context::getRequestMethod()!=='JSON')
|
||||
{
|
||||
Context::addHtmlHeader('<script type="text/javascript"> var captchaTargetAct = new Array("'.implode('","',$target_acts).'"); </script>');
|
||||
Context::addJsFile('./addons/captcha/captcha.js',false, '', null, 'body');
|
||||
Context::loadFile(array('./addons/captcha/captcha.js', 'body', '', null), true);
|
||||
}
|
||||
// compare session when calling actions such as writing a post or a comment on the board/issue tracker module
|
||||
|
||||
|
||||
if(!$_SESSION['captcha_authed'] && in_array(Context::get('act'), $target_acts)) {
|
||||
Context::loadLang('./addons/captcha/lang');
|
||||
$ModuleHandler->error = "captcha_denied";
|
||||
|
|
@ -57,10 +57,10 @@
|
|||
{
|
||||
if($_SESSION['captcha_authed']) return false;
|
||||
// Load language files
|
||||
|
||||
|
||||
Context::loadLang(_XE_PATH_.'addons/captcha/lang');
|
||||
// Generate keywords
|
||||
|
||||
|
||||
$arr = range('A','Y');
|
||||
shuffle($arr);
|
||||
$arr = array_slice($arr,0,6);
|
||||
|
|
@ -107,30 +107,30 @@
|
|||
$arr = array();
|
||||
for($i=0,$c=strlen($string);$i<$c;$i++) $arr[] = $string{$i};
|
||||
// Font site
|
||||
|
||||
|
||||
$w = 18;
|
||||
$h = 25;
|
||||
// Character length
|
||||
|
||||
|
||||
$c = count($arr);
|
||||
// Character image
|
||||
|
||||
|
||||
$im = array();
|
||||
// Create an image by total size
|
||||
|
||||
|
||||
$im[] = imagecreate(($w+2)*count($arr), $h);
|
||||
|
||||
$deg = range(-30,30);
|
||||
shuffle($deg);
|
||||
// Create an image for each letter
|
||||
|
||||
|
||||
foreach($arr as $i => $str)
|
||||
{
|
||||
$im[$i+1] = @imagecreate($w, $h);
|
||||
$background_color = imagecolorallocate($im[$i+1], 255, 255, 255);
|
||||
$text_color = imagecolorallocate($im[$i+1], 0, 0, 0);
|
||||
// Control font size
|
||||
|
||||
|
||||
$ran = range(1,20);
|
||||
shuffle($ran);
|
||||
|
||||
|
|
@ -147,16 +147,16 @@
|
|||
imagestring($im[$i+1], (array_pop($ran)%3)+3, 2, (array_pop($ran)%4), $str, $text_color);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Combine images of each character
|
||||
|
||||
|
||||
for($i=1;$i<count($im);$i++)
|
||||
{
|
||||
imagecopy($im[0],$im[$i],(($w+2)*($i-1)),0,0,0,$w,$h);
|
||||
imagedestroy($im[$i]);
|
||||
}
|
||||
// Larger image
|
||||
|
||||
|
||||
$big_count = 2;
|
||||
$big = imagecreatetruecolor(($w+2)*$big_count*$c, $h*$big_count);
|
||||
imagecopyresized($big, $im[0], 0, 0, 0, 0, ($w+2)*$big_count*$c, $h*$big_count, ($w+2)*$c, $h);
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
|
||||
if(function_exists('imageantialias')) imageantialias($big,true);
|
||||
// Background line
|
||||
|
||||
|
||||
$line_color = imagecolorallocate($big, 0, 0, 0);
|
||||
|
||||
$w = ($w+2)*$big_count*$c;
|
||||
|
|
@ -184,11 +184,11 @@
|
|||
function before_module_init_captchaAudio()
|
||||
{
|
||||
if($_SESSION['captcha_authed']) return false;
|
||||
|
||||
|
||||
$keyword = strtoupper($_SESSION['captcha_keyword']);
|
||||
$data = $this->createCaptchaAudio($keyword);
|
||||
|
||||
header('Content-type: audio/mpeg');
|
||||
header('Content-type: audio/mpeg');
|
||||
header("Content-Disposition: attachment; filename=\"captcha_audio.mp3\"");
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Expires: Sun, 1 Jan 2000 12:00:00 GMT');
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@
|
|||
|
||||
if($called_position == 'after_module_proc' && Context::getResponseMethod()=="HTML") {
|
||||
if(Mobile::isFromMobilePhone()) {
|
||||
Context::addCssFile('./addons/resize_image/css/resize_image.mobile.css');
|
||||
} else {
|
||||
Context::loadFile('./addons/resize_image/css/resize_image.mobile.css', true);
|
||||
} else {
|
||||
Context::loadJavascriptPlugin('ui');
|
||||
Context::addJsFile('./addons/resize_image/js/resize_image.min.js',false, '',null, 'body');
|
||||
Context::loadFile(array('./addons/resize_image/js/resize_image.min.js', 'body', '', null), true);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<load target="./js/menu_setup.js" />
|
||||
<load target="./js/menu_setup.js" usecdn="true" />
|
||||
|
||||
<div class="content" id="content">
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<script>
|
||||
<script type="text/javascript">
|
||||
jQuery(function($){
|
||||
$('#favicon').change(function(){
|
||||
var re_favicon = /favicon\.ico$/
|
||||
|
|
@ -16,8 +16,8 @@ jQuery(function($){
|
|||
});
|
||||
});
|
||||
</script>
|
||||
<!--%import("./js/config.js")-->
|
||||
<!--%import("../../session/tpl/js/session.js")-->
|
||||
<load target="./js/config.js" usecdn="true" />
|
||||
<load target="../../session/tpl/js/session.js" usecdn="true" />
|
||||
|
||||
<div class="content" id="content">
|
||||
<form action="./" method="post" id="ftp_form" class="form" enctype="multipart/form-data">
|
||||
|
|
@ -69,15 +69,19 @@ jQuery(function($){
|
|||
<div id="suggestion3" class="tgContent suggestion" >
|
||||
<ul></ul>
|
||||
</div>
|
||||
<<<<<<< .mine
|
||||
</div>
|
||||
=======
|
||||
</p>
|
||||
>>>>>>> .r9199
|
||||
<p>
|
||||
<select class="moduleList" style="width:290px"></select>
|
||||
</p>
|
||||
<p>
|
||||
<select class="moduleIdList" style="width:290px"></select>
|
||||
<select class="moduleIdList" style="width:290px"></select>
|
||||
<a href="#" id="sitefind_addBtn" onclick="setStartModule()" style="display:none;">{$lang->cmd_select}</a>
|
||||
</p>
|
||||
</p>
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p class="q"><label for="">{$lang->about_use_rewrite}</label></p>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<load target="js/theme.js" type="body" />
|
||||
<load target="js/theme.js" type="body" usecdn="true" />
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function($){
|
||||
|
|
@ -40,7 +40,7 @@ $('#theme').data('themes', themes);
|
|||
<label for="{$key}">{$val->title}({$key})</label>
|
||||
<ul>
|
||||
<li>· {$lang->version}: {$val->version}</li>
|
||||
<li>· {$lang->author}:
|
||||
<li>· {$lang->author}:
|
||||
<!--@foreach($val->publisher as $publisher)-->
|
||||
<a href="{$publisher->homepage}" cond="$publisher->homepage">{$publisher->name}</a>
|
||||
<!--@if(!$publisher->homepage)-->{$publisher->name}<!--@end-->
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
xe.lang.msg_empty_search_target = '{$lang->msg_empty_search_target}';
|
||||
xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
||||
</script>
|
||||
<!--%import("js/comment_admin.js")-->
|
||||
<load target="js/comment_admin.js" usecdn="true" />
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/comment_admin.js")-->
|
||||
<load target="js/comment_admin.js" usecdn="true" />
|
||||
|
||||
<h3 class="xeAdmin">{$lang->comment} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("js/communication_admin.js")-->
|
||||
<!--%import("../../editor/tpl/js/editor_module_config.js",optimized=false)-->
|
||||
<load target="js/communication_admin.js" usecdn="true" />
|
||||
<load target="../../editor/tpl/js/editor_module_config.js" usecdn="true" />
|
||||
|
||||
<h3 class="xeAdmin">{$lang->communication} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<load target="js/counter_admin.js" />
|
||||
<load target="counter.css" />
|
||||
<load target="js/counter_admin.js" usecdn="true" />
|
||||
<load target="counter.css" usecdn="true" />
|
||||
|
||||
<!--// datepicker javascript plugin load -->
|
||||
<!--%load_js_plugin("ui.datepicker")-->
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
<!--// tree javascript plugin load -->
|
||||
<!--%load_js_plugin("ui.tree")-->
|
||||
|
||||
<!--%import("js/document_category.js")-->
|
||||
<!--%import("css/document.css")-->
|
||||
<load target="js/document_category.js" usecdn="true" />
|
||||
<load target="css/document.css" usecdn="true" />
|
||||
<!--%load_js_plugin("ui.colorpicker")-->
|
||||
<script type="text/javascript">
|
||||
var category_title = "{$lang->category}";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--%import("filter/manage_checked_document.xml")-->
|
||||
<!--%import("js/document_admin.js")-->
|
||||
<!--%import("css/document.css")-->
|
||||
<load target="js/document_admin.js" usecdn="true" />
|
||||
<load target="css/document.css" usecdn="true" />
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->cmd_manage_document}</h3>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/document_admin.js")-->
|
||||
<load target="js/document_admin.js" usecdn="true" />
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--#include("header.html")-->
|
||||
<!--%import("css/document.css")-->
|
||||
<load target="css/document.css" usecdn="true" />
|
||||
<!--%import("filter/delete_alias.xml")-->
|
||||
|
||||
<form ruleset="deleteAlias" id="deleteForm" action="./" method="post">
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
xe.lang.msg_empty_search_target = '{$lang->msg_empty_search_target}';
|
||||
xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
||||
</script>
|
||||
<!--%import("js/document_admin.js")-->
|
||||
<load target="js/document_admin.js" usecdn="true" />
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<!--%import("js/document_admin.js")-->
|
||||
<load target="js/document_admin.js" usecdn="true" />
|
||||
<!--%import("filter/insert_extra_var.xml")-->
|
||||
<!--%import("filter/delete_extra_var.xml")-->
|
||||
<!--%import("js/module_admin.js")-->
|
||||
<load target="js/module_admin.js" usecdn="true" />
|
||||
|
||||
<!--@if($selected_var_idx && $extra_keys[$selected_var_idx])-->
|
||||
{@ $selected_var = $extra_keys[$selected_var_idx] }
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
<tr>
|
||||
<th><div>{$lang->column_name}</div></th>
|
||||
<td class="wide">
|
||||
<input type="text" name="name" value="{htmlspecialchars($selected_var->name)}" class="inputTypeText w200" id="name" /><a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','name')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
|
||||
<input type="text" name="name" value="{htmlspecialchars($selected_var->name)}" class="inputTypeText w200" id="name" /><a href="{getUrl('','module','module','act','dispModuleAdminLangcode','target','name')}" onclick="popopen(this.href);return false;" class="buttonSet buttonSetting"><span>{$lang->cmd_find_langcode}</span></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/document_admin.js")-->
|
||||
<load target="js/document_admin.js" usecdn="true" />
|
||||
|
||||
<h3 class="xeAdmin">{$lang->document} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("./js/document_admin.js")-->
|
||||
<!--%import("./css/document.css")-->
|
||||
<load target="./js/document_admin.js" usecdn="true" />
|
||||
<load target="./css/document.css" usecdn="true" />
|
||||
|
||||
<div class="fr"><a href="#" onclick="window.close();return false;" class="button"><span>{$lang->cmd_close}</span></a></div>
|
||||
{$content}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("./js/document_admin.js")-->
|
||||
<!--%import("./css/document.css")-->
|
||||
<load target="./js/document_admin.js" usecdn="true" />
|
||||
<load target="./css/document.css" usecdn="true" />
|
||||
|
||||
<div class="printContent">
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
<!--%import("css/default.css")-->
|
||||
|
||||
<load target="css/default.css" usecdn="true" />
|
||||
<div id="memberModule">
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
|
|
@ -34,12 +33,12 @@
|
|||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pagination a1">
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<!--@if($page == $page_no)-->
|
||||
<strong>{$page_no}</strong>
|
||||
<strong>{$page_no}</strong>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
||||
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
**/
|
||||
function dispEditorPopup() {
|
||||
// add a css file
|
||||
Context::addCssFile($this->module_path."tpl/css/editor.css");
|
||||
Context::loadFile($this->module_path."tpl/css/editor.css", true);
|
||||
// List variables
|
||||
$editor_sequence = Context::get('editor_sequence');
|
||||
$component = Context::get('component');
|
||||
|
|
@ -120,16 +120,16 @@
|
|||
function dispEditorSkinColorset(){
|
||||
$skin = Context::get('skin');
|
||||
$oModuleModel = &getModel('module');
|
||||
$skin_info = $oModuleModel->loadSkinInfo($this->module_path,$skin);
|
||||
$skin_info = $oModuleModel->loadSkinInfo($this->module_path,$skin);
|
||||
$colorset = $skin_info->colorset;
|
||||
|
||||
|
||||
Context::set('colorset', $colorset);
|
||||
}
|
||||
|
||||
function dispEditorConfigPreview() {
|
||||
|
||||
function dispEditorConfigPreview() {
|
||||
$oEditorModel = &getModel('editor');
|
||||
$config = $oEditorModel->getEditorConfig();
|
||||
|
||||
|
||||
$option->allow_fileupload = false;
|
||||
$option->content_style = $config->content_style;
|
||||
$option->content_font = $config->content_font;
|
||||
|
|
@ -144,9 +144,9 @@
|
|||
$option->primary_key_name = 'dummy_key';
|
||||
$option->colorset = $config->sel_editor_colorset;
|
||||
$editor = $oEditorModel->getEditor(0, $option);
|
||||
|
||||
Context::set('editor', $editor);
|
||||
|
||||
|
||||
Context::set('editor', $editor);
|
||||
|
||||
$option_com->allow_fileupload = false;
|
||||
$option_com->content_style = $config->content_style;
|
||||
$option_com->content_font = $config->content_font;
|
||||
|
|
@ -161,15 +161,15 @@
|
|||
$option_com->primary_key_name = 'dummy_key2';
|
||||
$option_com->content_style = $config->comment_content_style;
|
||||
$option_com->colorset = $config->sel_comment_editor_colorset;
|
||||
|
||||
|
||||
$editor_comment = $oEditorModel->getEditor(0, $option_com);
|
||||
|
||||
|
||||
Context::set('editor_comment', $editor_comment);
|
||||
|
||||
|
||||
|
||||
|
||||
$this->setTemplatePath($this->module_path.'tpl');
|
||||
$this->setTemplateFile('config_preview');
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/editor_module_config.js")-->
|
||||
<load target="js/editor_module_config.js" usecdn="true" />
|
||||
<script type="text/javascript">
|
||||
jQuery(function($){
|
||||
var fontPreview = $('.fontPreview');
|
||||
|
|
@ -26,11 +26,11 @@
|
|||
<div class="content" id="content">
|
||||
<h1 class="h1">{$lang->editor}</h1>
|
||||
<h2 class="h2">{$lang->editor_preview}</h2>
|
||||
|
||||
|
||||
<!-- Editor Preview -->
|
||||
<a href="{getUrl('module', 'admin', 'act', 'dispEditorConfigPreview')}" target="_blank">{$lang->cmd_preview}</a>
|
||||
<!-- /Editor Preview -->
|
||||
<form action="./" method="post" class="form" ruleset="generalConfig">
|
||||
<form action="./" method="post" class="form" ruleset="generalConfig">
|
||||
<input type="hidden" name="act" value="procEditorAdminGeneralConfig " />
|
||||
|
||||
<fieldset class="section">
|
||||
|
|
@ -38,38 +38,38 @@
|
|||
<ul>
|
||||
<li>
|
||||
<p class="q">{$lang->guide_choose_main_editor}</p>
|
||||
<p class="a">
|
||||
<p class="a">
|
||||
<!--@foreach($editor_skin_list as $editor)-->
|
||||
<input type="radio" name="editor_skin" value="{$editor}" id="doc_{$editor}" onClick="getEditorSkinColorList(this.value, null, 'document','doc_{$editor}')" <!--@if($editor==$editor_config->editor_skin)-->checked="checked" <!--@end-->/>
|
||||
<label for="doc_{$editor}" value='sdf'>{$editor}</label>
|
||||
<select name="sel_editor_colorset" <!--@if($editor==$editor_config->editor_skin)--> >
|
||||
<input type="radio" name="editor_skin" value="{$editor}" id="doc_{$editor}" onClick="getEditorSkinColorList(this.value, null, 'document','doc_{$editor}')" <!--@if($editor==$editor_config->editor_skin)-->checked="checked" <!--@end-->/>
|
||||
<label for="doc_{$editor}" value='sdf'>{$editor}</label>
|
||||
<select name="sel_editor_colorset" <!--@if($editor==$editor_config->editor_skin)--> >
|
||||
<!--@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-->
|
||||
<!--@else-->style="display:none"> <!--@end-->
|
||||
</select>
|
||||
<br />
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<p class="q"><label for="editor_height">{$lang->guide_set_height_main_editor}</label></p>
|
||||
<p class="a"><input type="text" name="editor_height" id="editor_height" value="<!--@if($editor_config->editor_height)-->{$editor_config->editor_height}<!--@else-->{$editor_config_default['editor_height']}<!--@end-->" style="width:30px" /> px</p>
|
||||
</li>
|
||||
</li>
|
||||
<li>
|
||||
<p class="q">{$lang->guide_choose_comment_editor}</p>
|
||||
<p class="a">
|
||||
<!--@foreach($editor_skin_list as $editor)-->
|
||||
<input type="radio" name="comment_editor_skin" value="{$editor}" id="com_{$editor}" onclick="getEditorSkinColorList(this.value, null, 'reply','com_{$editor}')" <!--@if($editor == $editor_config->comment_editor_skin)-->checked="checked" <!--@end-->/>
|
||||
<input type="radio" name="comment_editor_skin" value="{$editor}" id="com_{$editor}" onclick="getEditorSkinColorList(this.value, null, 'reply','com_{$editor}')" <!--@if($editor == $editor_config->comment_editor_skin)-->checked="checked" <!--@end-->/>
|
||||
<label for="com_{$editor}">{$editor}</label>
|
||||
<select name="sel_comment_editor_colorset" <!--@if($editor==$editor_config->comment_editor_skin)--> >
|
||||
<select name="sel_comment_editor_colorset" <!--@if($editor==$editor_config->comment_editor_skin)--> >
|
||||
<!--@foreach($editor_colorset_list as $key => $val)-->
|
||||
<option value="{$val->name}" <!--@if($editor_config->sel_comment_editor_colorset == $val->name)-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
<!--@else-->style="display:none"> <!--@end-->
|
||||
</select>
|
||||
<br />
|
||||
<!--@end-->
|
||||
<br />
|
||||
<!--@end-->
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
|
|
@ -97,15 +97,15 @@
|
|||
<li>
|
||||
<p class="q"><label for="fontSize">{$lang->guide_choose_font_size_body}</label></p>
|
||||
<textarea rows="3" cols="42" class="fontPreview" title="Font Preview">{$lang->font_preview}</textarea>
|
||||
<p class="a"><input type="text" id="fontSize" name="content_font_size" value="<!--@if($editor_config->content_font_size)-->{str_replace('px','',$editor_config->content_font_size)}<!--@else-->{str_replace('px','',$editor_config_default['content_font_size'])}<!--@end-->" style="width:30px" /> px</p>
|
||||
</li>
|
||||
<p class="a"><input type="text" id="fontSize" name="content_font_size" value="<!--@if($editor_config->content_font_size)-->{str_replace('px','',$editor_config->content_font_size)}<!--@else-->{str_replace('px','',$editor_config_default['content_font_size'])}<!--@end-->" style="width:30px" /> px</p>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="btnArea">
|
||||
<span class="btn"><input type="submit" value="Save" /></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
<form action="./" method="post" class="form" ruleset="componentOrderAndUse">
|
||||
<form action="./" method="post" class="form" ruleset="componentOrderAndUse">
|
||||
<input type="hidden" name="act" value="procEditorAdminCheckUseListOrder" />
|
||||
<fieldset class="section">
|
||||
<h2 class="h2">Editor Component</h2>
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
<th scope="col">{$lang->use}</th>
|
||||
<th scope="col">{$lang->cmd_delete}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</thead>
|
||||
<tbody class="uDrag">
|
||||
<!--@foreach($component_list as $component_name => $xml_info)-->
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
<load target="../../admin/tpl/css/admin.css" />
|
||||
<load target="../../admin/tpl/css/admin_{$lang_type}.css" />
|
||||
<load target="../../admin/tpl/css/admin.css" usecdn="true" />
|
||||
<load target="../../admin/tpl/css/admin_{$lang_type}.css" usecdn="true" />
|
||||
<div class="x" style="padding: 10px;">
|
||||
<h2 class="h2">에디터 미리보기</h2>
|
||||
<h2 class="h2">에디터 미리보기</h2>
|
||||
<h2 class="h3">본문 에디터</h2>
|
||||
<form onSubmit="return false">
|
||||
<input type="hidden" name="dummy_content" />
|
||||
<input type="hidden" name="dummy_key" value="1" />
|
||||
|
||||
|
||||
<p>{$editor}</p>
|
||||
</form><br />
|
||||
<h2 class="h3">댓글 에디터</h2>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("filter/insert_editor_module_config.xml")-->
|
||||
<!--%import("js/editor_module_config.js")-->
|
||||
<load target="js/editor_module_config.js" usecdn="true" />
|
||||
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_editor_module_config)">
|
||||
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<!--%import("css/editor.css")-->
|
||||
<!--%import("css/editor_admin.css")-->
|
||||
<!--%import("js/editor_admin.js")-->
|
||||
<load target="css/editor.css" usecdn="true" />
|
||||
<load target="css/editor_admin.css" usecdn="true" />
|
||||
<load target="js/editor_admin.js" usecdn="true" />
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->cmd_setup}</h3>
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
<div id="section_{$module_category_srl}">
|
||||
<!--@foreach($modules->list as $key => $val)-->
|
||||
<div class="module_list">
|
||||
<input type="checkbox" value="{$key}" name="mid_list" id="chk_mid_list_{$key}" <!--@if(in_array($key, $component->mid_list))-->checked="checked"<!--@end--> />
|
||||
<input type="checkbox" value="{$key}" name="mid_list" id="chk_mid_list_{$key}" <!--@if(in_array($key, $component->mid_list))-->checked="checked"<!--@end--> />
|
||||
<label for="chk_mid_list_{$key}">{$key} ({$val->browser_title})</label>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("css/editor.css")-->
|
||||
<!--%import("../../../modules/admin/tpl/css/admin.css")-->
|
||||
<load target="css/editor.css" usecdn="true" />
|
||||
<load target="../../../modules/admin/tpl/css/admin.css" usecdn="true" />
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$component->title} ver. {$component->version}</h3>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<load target="js/fileConfig.js" type="body"/>
|
||||
<load target="js/fileConfig.js" type="body" usecdn="true" />
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
xe.lang.msg_empty_search_target = '{$lang->msg_empty_search_target}';
|
||||
xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
||||
</script>
|
||||
<!--%import("js/file_admin.js")-->
|
||||
<load target="js/file_admin.js" usecdn="true" />
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/file_admin.js")-->
|
||||
<load target="js/file_admin.js" usecdn="true" />
|
||||
|
||||
<h3 class="xeAdmin">{$lang->file} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<!--@if(__DEBUG__)-->
|
||||
<load target="js/importer_admin.js" />
|
||||
<load target="js/importer_admin.js" usecdn="true" />
|
||||
<!--@else-->
|
||||
<load target="js/importer_admin.min.js" />
|
||||
<load target="js/importer_admin.min.js" usecdn="true" />
|
||||
<!--@end-->
|
||||
{@ $type_list = array('module'=>$lang->type_module, 'ttxml'=>$lang->type_ttxml, 'member'=>$lang->type_member, 'sync'=>$lang->type_syncmember, 'message'=>$lang->type_message) }
|
||||
<h1 class="h1">{$lang->importer}</h1>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<include target="./header.html" />
|
||||
<load target="js/importer_admin.js" />
|
||||
<load target="js/importer_admin.js" usecdn="true" />
|
||||
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
|
|
@ -117,21 +117,21 @@
|
|||
<input type="hidden" name="unit_count" value="100" />
|
||||
<input type="hidden" name="user_id" value="" />
|
||||
<p style="text-align:center">
|
||||
<span class="prgrs prgrsMedium">
|
||||
<span class="prgrs prgrsMedium">
|
||||
<strong id="preProgressMsg">{$lang->preprocessing}</strong>
|
||||
<strong id="progressMsg" style="display:none;">{$lang->import_step_desc[99]}</strong>
|
||||
<span class="pBar" style="width:300px;text-align:left">
|
||||
<span class="pAction" id="progressBar" style="width:0%"><!-- Progress status --></span>
|
||||
<span class="pNum"><span id="completeCount">0</span>/<span id="totalCount">0</span></span>
|
||||
</span>
|
||||
<strong id="progressPercent">0%</strong>
|
||||
</span>
|
||||
<strong id="progressPercent">0%</strong>
|
||||
</span>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
jQuery('a.modalAnchor')
|
||||
.bind('before-close.mw', function(event){
|
||||
.bind('before-close.mw', function(event){
|
||||
return false;
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/integration_search_admin.js")-->
|
||||
<load target="js/integration_search_admin.js" usecdn="true" />
|
||||
|
||||
<h3 class="xeAdmin">{$lang->integration_search} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--#include("header.html")-->
|
||||
<!--%import("../../widget/tpl/js/widget_admin.js")-->
|
||||
<load target="../../widget/tpl/js/widget_admin.js" usecdn="true" />
|
||||
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
|
|
|
|||
|
|
@ -665,9 +665,9 @@
|
|||
$faceoff_layout_css = $this->getUserLayoutFaceOffCss($layout_info->layout_srl);
|
||||
if($faceoff_layout_css) Context::addCSSFile($faceoff_layout_css);
|
||||
// CSS output for the widget
|
||||
Context::addCSSFile($this->module_path.'/tpl/css/widget.css');
|
||||
if($layout_info->extra_var->colorset->value == 'black') Context::addCSSFile($this->module_path.'/tpl/css/widget@black.css');
|
||||
else Context::addCSSFile($this->module_path.'/tpl/css/widget@white.css');
|
||||
Context::loadFile($this->module_path.'/tpl/css/widget.css', true);
|
||||
if($layout_info->extra_var->colorset->value == 'black') Context::loadFile($this->module_path.'/tpl/css/widget@black.css', true);
|
||||
else Context::loadFile($this->module_path.'/tpl/css/widget@white.css', true);
|
||||
// Different page displayed upon user's permission
|
||||
$logged_info = Context::get('logged_info');
|
||||
// Display edit button for faceoff layout
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<include target="header.html" />
|
||||
<load target="css/adminEdit.css" />
|
||||
<load target="js/adminEdit.js" />
|
||||
<load target="css/adminEdit.css" usecdn="true" />
|
||||
<load target="js/adminEdit.js" usecdn="true" />
|
||||
|
||||
<h2 class="h2">{$selected_layout->layout_title}</h2>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<include target="header.html" />
|
||||
<load target="js/adminList.js" />
|
||||
<load target="js/adminList.js" usecdn="true" />
|
||||
|
||||
<script type="text/javascript">
|
||||
xe.lang.confirm_delete = '{$lang->confirm_delete}';
|
||||
|
|
|
|||
|
|
@ -7,11 +7,11 @@
|
|||
|
||||
class memberAdminView extends member {
|
||||
|
||||
var $group_list = NULL; ///< group list
|
||||
var $memberInfo = NULL; ///< selected member info
|
||||
var $group_list = NULL; ///< group list
|
||||
var $memberInfo = NULL; ///< selected member info
|
||||
|
||||
/**
|
||||
* @brief initialization
|
||||
* @brief initialization
|
||||
**/
|
||||
function init() {
|
||||
$oMemberModel = &getModel('member');
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
else Context::set('member_info',$this->memberInfo);
|
||||
}
|
||||
|
||||
// retrieve group list
|
||||
// retrieve group list
|
||||
$this->group_list = $oMemberModel->getGroups();
|
||||
Context::set('group_list', $this->group_list);
|
||||
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
}
|
||||
|
||||
/**
|
||||
* @brief display member list
|
||||
* @brief display member list
|
||||
**/
|
||||
function dispMemberAdminList() {
|
||||
$oMemberAdminModel = &getAdminModel('member');
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
|
||||
// Get join form list which is additionally set
|
||||
$extendItems = $oMemberModel->getJoinFormList();
|
||||
|
||||
|
||||
Context::set('config',$config);
|
||||
|
||||
// list of skins for member module
|
||||
|
|
@ -191,7 +191,7 @@
|
|||
unset($formTag);
|
||||
$inputTag = '';
|
||||
$formTag->title = $formInfo->title;
|
||||
if ($formInfo->required || $formInfo->mustRequired && $formInfo->name != 'password') $formTag->title = $formTag->title.' <em style="color:red">*</em>';
|
||||
if ($formInfo->required || $formInfo->mustRequired && $formInfo->name != 'password') $formTag->title = $formTag->title.' <em style="color:red">*</em>';
|
||||
$formTag->name = $formInfo->name;
|
||||
|
||||
if($formInfo->isDefaultForm){
|
||||
|
|
@ -250,7 +250,7 @@
|
|||
else{
|
||||
$extendForm = $extend_form_list[$formInfo->member_join_form_srl];
|
||||
$replace = array('column_name' => $extendForm->column_name,
|
||||
'value' => $extendForm->value);
|
||||
'value' => $extendForm->value);
|
||||
$extentionReplace = array();
|
||||
|
||||
if($extendForm->column_type == 'text' || $extendForm->column_type == 'homepage' || $extendForm->column_type == 'email_address'){
|
||||
|
|
@ -300,7 +300,7 @@
|
|||
}
|
||||
$template = sprintf($template, implode('', $optionTag));
|
||||
}elseif($extendForm->column_type == 'kr_zip'){
|
||||
Context::loadFile(array('./modules/member/tpl/js/krzip_search.js', 'body'));
|
||||
Context::loadFile(array('./modules/member/tpl/js/krzip_search.js', 'body'), true);
|
||||
$extentionReplace = array(
|
||||
'msg_kr_address' => $lang->msg_kr_address,
|
||||
'msg_kr_address_etc' => $lang->msg_kr_address_etc,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("filter/delete_member.xml")-->
|
||||
<!--%import("js/member_admin.js")-->
|
||||
<load target="js/member_admin.js" usecdn="true" />
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, delete_member)" class="gap1">
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("filter/delete_members.xml")-->
|
||||
<!--%import("js/member_admin.js")-->
|
||||
<load target="js/member_admin.js" usecdn="true" />
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->cmd_delete} ({$lang->target} : {count($member_list)})</h3>
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
<load target="js/member_admin_group.js" />
|
||||
<load target="js/member_admin_group.js" usecdn="true" />
|
||||
<script type="text/javascript" >
|
||||
xe.lang.groupDeleteMessage = '{$lang->msg_group_delete}';
|
||||
xe.lang.multilingual = '{$lang->cmd_set_multilingual}';
|
||||
xe.lang.modify = '{$lang->cmd_modify}';
|
||||
xe.lang.delete = '{$lang->cmd_delete}';
|
||||
</script>
|
||||
<style type="text/css">
|
||||
<style type="text/css">
|
||||
._imageMarkButton img {max-height:16px}
|
||||
.filebox_item { border: 1px solid #ccc!important; padding: 2px; max-height: 16px; }
|
||||
.filebox_item { border: 1px solid #ccc!important; padding: 2px; max-height: 16px; }
|
||||
.x .multiLangEdit input.vLang {width:120px}
|
||||
.x .multiLangEdit input.vLang.loading {padding-right:24px;width:100px;background:transparent url(../../admin/tpl/img/preLoader16.gif) no-repeat 96px center}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("js/member_admin.js")-->
|
||||
<!--%import("css/member_admin.css")-->
|
||||
<load target="js/member_admin.js" usecdn="true" />
|
||||
<load target="css/member_admin.css" usecdn="true" />
|
||||
<!--%load_js_plugin("ui")-->
|
||||
|
||||
<h3 class="xeAdmin">{$lang->member} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<load target="js/member_admin.js" />
|
||||
<load target="js/krzip_search.js" />
|
||||
<load target="js/member_admin.js" usecdn="true" />
|
||||
<load target="js/krzip_search.js" usecdn="true" />
|
||||
<!--%load_js_plugin("ui.datepicker")-->
|
||||
<script type="text/javascript" >
|
||||
xe.lang.deleteProfileImage = '{$lang->msg_delete_extend_form}';
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
{@ Context::addJsFile("./common/js/jquery.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/js_app.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/common.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_handler.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_js_filter.js", true, '', -100000) }
|
||||
{@ Context::loadFile(array("./common/js/jquery.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/js_app.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/common.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_handler.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_js_filter.js", 'head', '', -100000), true) }
|
||||
|
||||
<!--%import("css/msignup.css")-->
|
||||
<load target="css/msignup.css" usecdn="true" />
|
||||
<!--%import("../skins/default/filter/leave_member.xml")-->
|
||||
<!--%import("../skins/default/js/member.js")-->
|
||||
<load target="../skins/default/js/member.js" usecdn="true" />
|
||||
<div class="bd">
|
||||
<h2 class="h2">{$member_title = $lang->msg_leave_member}</h2>
|
||||
<form id="fo_insert_member" action="./" method="get" onsubmit="return procFilter(this, leave_member)">
|
||||
|
|
@ -23,6 +23,6 @@
|
|||
<input type="submit" value="{$lang->cmd_leave}" accesskey="s" class="bn"/>
|
||||
<a href="{getUrl('act','dispMemberInfo','member_srl','')}" class="bn"><span>{$lang->cmd_back}</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("css/mlogin.css")-->
|
||||
<div class="bd">
|
||||
<load target="css/mlogin.css" usecdn="true" />
|
||||
<div class="bd">
|
||||
<div class="hx h2">
|
||||
<h2>{$lang->cmd_login}</h2>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/member_admin.js")-->
|
||||
<load target="js/member_admin.js" usecdn="true" />
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->cmd_member_group} ({$lang->target} : {count($member_list)})</h3>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<load target="js/member_admin_config.js" />
|
||||
<load target="js/member_admin_config.js" usecdn="true" />
|
||||
<script type="text/javascript">
|
||||
xe.lang.msg_delete_extend_form = '{$lang->msg_delete_extend_form}';
|
||||
xe.lang.confirm_delete = '{$lang->confirm_delete}';
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
{@ Context::addJsFile("./common/js/jquery.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/js_app.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/common.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_handler.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_js_filter.js", true, '', -100000) }
|
||||
{@ Context::loadFile(array("./common/js/jquery.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/js_app.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/common.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_handler.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_js_filter.js", 'head', '', -100000), true) }
|
||||
|
||||
|
||||
<!--%import("css/msignup.css")-->
|
||||
<load target="css/msignup.css" usecdn="true" />
|
||||
<div class="bd">
|
||||
<h2 class="h2">{$lang->cmd_view_member_info}</h2>
|
||||
<h3 class="h3">{$lang->member_default_info}</h3>
|
||||
|
|
@ -52,11 +52,11 @@
|
|||
<li><label class="db fb al">{htmlspecialchars($val->column_title)}</label>
|
||||
<!--@if($val->is_private)-->
|
||||
<span class="privateItem">{$lang->private}</span>
|
||||
<!--@else-->
|
||||
<!--@else-->
|
||||
<!--@if($val->column_type=='tel' && $val->value[0] && $val->value[1] && $val->value[2])-->
|
||||
{htmlspecialchars($val->value[0])}
|
||||
{htmlspecialchars($val->value[0])}
|
||||
<!--@if($val->value[1])-->-<!--@end-->
|
||||
{htmlspecialchars($val->value[1])}
|
||||
{htmlspecialchars($val->value[1])}
|
||||
<!--@if($val->value[2])-->-<!--@end-->
|
||||
{htmlspecialchars($val->value[2])}
|
||||
<!--@elseif($val->column_type=='kr_zip')-->
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
{nl2br(htmlspecialchars($val->value))}
|
||||
<!--@end-->
|
||||
</li>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</ul>
|
||||
</fieldset>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<load target="js/member_admin_list.js" type="body" />
|
||||
<load target="js/member_admin_list.js" type="body" usecdn="true" />
|
||||
<script type="text/javascript">
|
||||
xe.lang.msg_select_user = '{$lang->msg_select_user}';
|
||||
xe.lang.msg_delete_user = '{$lang->msg_delete_user}';
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
{@ Context::addJsFile("./common/js/jquery.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/js_app.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/common.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_handler.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_js_filter.js", true, '', -100000) }
|
||||
{@ Context::loadFile(array("./common/js/jquery.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/js_app.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/common.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_handler.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_js_filter.js", 'head', '', -100000), true) }
|
||||
|
||||
<!--%import("css/msignup.css")-->
|
||||
<!--%import("js/signup_check.js")-->
|
||||
<!--%import("js/krzip_search.js")-->
|
||||
<load target="css/msignup.css" usecdn="true" />
|
||||
<load target="js/signup_check.js" usecdn="true" />
|
||||
<load target="js/krzip_search.js" usecdn="true" />
|
||||
<!--%import("../skins/default/filter/modify_info.xml")-->
|
||||
<!--%import("../skins/default/js/member.js")-->
|
||||
<load target="../skins/default/js/member.js" usecdn="true" />
|
||||
|
||||
<!--@if($member_config->profile_image == 'Y')-->
|
||||
<!--%import("../skins/default/filter/delete_profile_image.xml")-->
|
||||
|
|
@ -134,7 +134,7 @@
|
|||
<input type="radio" name="{$val->column_name}" value="{$v}" <!--@if(is_array($val->value)&&in_array($v, $val->value))-->checked="checked"<!--@end-->/><label for="{$v}">{$v}</label>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
||||
|
||||
<!--// 단일 선택 -->
|
||||
<!--@elseif($val->column_type == 'select')-->
|
||||
<select name="{$val->column_name}">
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
{@ Context::addJsFile("./common/js/jquery.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/js_app.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/common.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_handler.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_js_filter.js", true, '', -100000) }
|
||||
{@ Context::loadFile(array("./common/js/jquery.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/js_app.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/common.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_handler.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_js_filter.js", 'head', '', -100000), true) }
|
||||
|
||||
<!--%import("css/msignup.css")-->
|
||||
<load target="css/msignup.css" usecdn="true" />
|
||||
<!--%import("../skins/default/filter/modify_password.xml")-->
|
||||
<!--%import("../skins/default/js/member.js")-->
|
||||
<load target="../skins/default/js/member.js" usecdn="true" />
|
||||
<div class="bd">
|
||||
<h2 class="h2">{$member_title = $lang->cmd_modify_member_password}</h2>
|
||||
<form id="fo_insert_member" action="./" method="get" onsubmit="return procFilter(this, modify_password)">
|
||||
|
|
@ -25,6 +25,6 @@
|
|||
<div class="cm">
|
||||
<input type="submit" value="{$lang->cmd_registration}" accesskey="s" class="bn"/><a href="{getUrl('act','dispMemberInfo','member_srl','')}" class="bn"><span>{$lang->cmd_back}</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
|
@ -1,13 +1,13 @@
|
|||
{@ Context::addJsFile("./common/js/jquery.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/js_app.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/common.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_handler.js", true, '', -100000) }
|
||||
{@ Context::addJsFile("./common/js/xml_js_filter.js", true, '', -100000) }
|
||||
{@ Context::loadFile(array("./common/js/jquery.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/js_app.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/common.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_handler.js", 'head', '', -100000), true) }
|
||||
{@ Context::loadFile(array("./common/js/xml_js_filter.js", 'head', '', -100000), true) }
|
||||
|
||||
<!--%import("css/msignup.css")-->
|
||||
<!--%import("js/signup_check.js")-->
|
||||
<load target="css/msignup.css" usecdn="true" />
|
||||
<load target="js/signup_check.js" usecdn="true" />
|
||||
<!--%import("../skins/default/filter/signup.xml")-->
|
||||
<!--%import("../skins/default/js/member.js")-->
|
||||
<load target="../skins/default/js/member.js" usecdn="true" />
|
||||
<div class="bd">
|
||||
<div class="hx h2">
|
||||
<h2>{$lang->cmd_signup}</h2>
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
<input type="radio" name="{$val->column_name}" value="{$v}" <!--@if(is_array($val->value)&&in_array($v, $val->value))-->checked="checked"<!--@end-->/><label for="{$v}">{$v}</label>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
||||
|
||||
<!--// 단일 선택 -->
|
||||
<!--@elseif($val->column_type == 'select')-->
|
||||
<select name="{$val->column_name}">
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
<input type="text" name="{$val->column_name}" id="krzip_address2_{$val->column_name}" value="{$lang->msg_kr_address_etc}" onfocus="this.value=''" />
|
||||
</div>
|
||||
</div>
|
||||
<load target="js/krzip_search.js" type="body" />
|
||||
<load target="js/krzip_search.js" type="body" usecdn="true" />
|
||||
<script type="text/javascript">jQuery(function($){ $.krzip('{$val->column_name}') });</script>
|
||||
<!--// 일본 주소 검색 -->
|
||||
<!--@elseif($val->column_type == 'jp_zip')-->
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
<load target="filter/delete_menu_item.xml" />
|
||||
<load target="filter/move_menu_item.xml" />
|
||||
|
||||
<load target="js/menu_admin.js" type="body" />
|
||||
<load target="js/menu_tree.js" type="body" />
|
||||
<load target="js/menu_admin.js" type="body" usecdn="true" />
|
||||
<load target="js/menu_tree.js" type="body" usecdn="true" />
|
||||
|
||||
<!--// tree javascript plugin load -->
|
||||
<!--%load_js_plugin("ui.tree")-->
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<load target="./js/menu_admin.js" />
|
||||
<load target="../../admin/tpl/js/sitemap.js" />
|
||||
<load target="./js/sitemap.js" />
|
||||
<load target="./js/menu_admin.js" usecdn="true" />
|
||||
<load target="../../admin/tpl/js/sitemap.js" usecdn="true" />
|
||||
<load target="./js/sitemap.js" usecdn="true" />
|
||||
|
||||
<div class="content" id="content">
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
<p class="q"><label for="name">{$lang->menu_name}</label></p>
|
||||
<div class="a multiLangEdit">
|
||||
<input type="hidden" class="vLang" name="menu_name_key" />
|
||||
<input type="text" class="vLang" id="name" name="menu_name" />
|
||||
<input type="text" class="vLang" id="name" name="menu_name" />
|
||||
<!-- Multilingual -->
|
||||
<div id="langEdit" class="langEdit tgContent">
|
||||
<ul class="langList"></ul>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/module_admin.js")-->
|
||||
<load target="js/module_admin.js" usecdn="true" />
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->module_copy}</h3>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("./js/module_admin.js")-->
|
||||
<load target="./js/module_admin.js" usecdn="true" />
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->filebox}</h3>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/module_admin.js")-->
|
||||
<load target="js/module_admin.js" usecdn="true"
|
||||
|
||||
<h3 class="xeAdmin">{$lang->module} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("css/mlang.css")-->
|
||||
<load target="css/mlang.css" usecdn="true" />
|
||||
<div class="bd">
|
||||
<div class="hx h2">
|
||||
<h2>Select Your Language</h2>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/module_admin.js")-->
|
||||
<load target="js/module_admin.js" usecdn="true" />
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( function() { jQuery('.grant_default').change( function(event) { doShowGrantZone(); } ); doShowGrantZone() } );
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
</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}" />
|
||||
<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>
|
||||
<!--@end-->
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("filter/insert_grant.xml")-->
|
||||
<!--%import("js/module_admin.js")-->
|
||||
<load target="js/module_admin.js" usecdn="true" />
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( function() { jQuery('.grant_default').change( function(event) { doShowGrantZone(); } ); doShowGrantZone() } );
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
|
||||
<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-->/>
|
||||
<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>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/multilingual.js")-->
|
||||
<load target="js/multilingual.js" usecdn="true" />
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/module_admin.js")-->
|
||||
<load target="js/module_admin.js" usecdn="true" />
|
||||
|
||||
<script type="text/javascript">
|
||||
xe.lang.favorite_on = '{$lang->favorite}({$lang->on})';
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("./js/module_admin.js")-->
|
||||
<!--%import("../../common/css/popup.css")-->
|
||||
<load target="./js/module_admin.js" usecdn="true" />
|
||||
<load target="../../common/css/popup.css" usecdn="true" />
|
||||
|
||||
<div id="popHeader">
|
||||
<h3 class="xeAdmin">{$lang->module_selector}</h3>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("./js/module_admin.js")-->
|
||||
<load target="./js/module_admin.js" usecdn="true" />
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->bundle_setup}</h3>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("../../admin/tpl/css/admin.css")-->
|
||||
<load target="../../admin/tpl/css/admin.css" usecdn="true" />
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$skin_info->title}</h3>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/page_admin.js")-->
|
||||
<load target="js/page_admin.js" usecdn="true" />
|
||||
<form action="./" method="post" onsubmit="return procFilter(this, insert_article)" id="fo_write" class="boardWrite">
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="content" value="{$oDocument->getContentText()}" />
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<div>{$page_content}</div>
|
||||
<!--@if($grant->manager)-->
|
||||
<!--%import("./js/page_admin.js")-->
|
||||
<load target="./js/page_admin.js" usecdn="true" />
|
||||
<div class="tRight gap1 clear">
|
||||
<!--@if($module_info->page_type == 'WIDGET')-->
|
||||
<a href="#" onclick="doRemoveWidgetCache({$module_info->module_srl}); return false;" class="button blue"><span>{$lang->cmd_remake_cache}</span></a>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/page_admin.js")-->
|
||||
<load target="js/page_admin.js" usecdn="true" />
|
||||
<h3 class="xeAdmin"><span class="gray">{$lang->page_management}</span></h3>
|
||||
|
||||
<div class="infoText">{nl2br($lang->about_page)}</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/page_admin.js")-->
|
||||
<load target="js/page_admin.js" usecdn="true" />
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<!-- 검색 -->
|
||||
|
|
@ -91,12 +91,12 @@
|
|||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pagination a1">
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<!--@if($page == $page_no)-->
|
||||
<strong>{$page_no}</strong>
|
||||
<strong>{$page_no}</strong>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
||||
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
<div>{$page_content}</div>
|
||||
|
||||
<!--@if($grant->manager)-->
|
||||
<!--%import("./js/page_admin.js")-->
|
||||
<load target="./js/page_admin.js" usecdn="true" />
|
||||
<div class="tRight gap1 clear">
|
||||
<a href="#" onclick="doRemoveWidgetCache({$module_info->module_srl}); return false;" class="button blue"><span>{$lang->cmd_remake_cache}</span></a>
|
||||
<!--@if($logged_info->is_admin=='Y')-->
|
||||
<a href="{getUrl('act','dispPageAdminInfo','module_srl',$module_info->module_srl)}" class="button green"><span>{$lang->cmd_setup}</span></a>
|
||||
<!--@end-->
|
||||
<a href="{getUrl('act','dispPageAdminMobileContentModify','document_srl','')}" class="button red"><span>{$lang->cmd_page_modify}</span></a>
|
||||
<a href="{getUrl('act','','module_srl',$module_info->module_srl)}" class="button black"><span>PC</span></a>
|
||||
<a href="{getUrl('act','','module_srl',$module_info->module_srl)}" class="button black"><span>PC</span></a>
|
||||
<p style="color:#777">{$lang->about_mcontent}</p>
|
||||
</div>
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("css/mpage.css")-->
|
||||
<load target="css/mpage.css" usecdn="true" />
|
||||
<div class="bd">
|
||||
{$page_content}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<!--%import("filter/insert_page_content.xml")-->
|
||||
<!--%import("js/page_admin.js")-->
|
||||
<!--%import("css/page.css")-->
|
||||
<load target="js/page_admin.js" usecdn="true" />
|
||||
<load target="css/page.css" usecdn="true" />
|
||||
|
||||
<!--%import("../../widget/tpl/js/widget.js")-->
|
||||
<!--%import("../../widget/tpl/css/widget.css")-->
|
||||
<load target="../../widget/tpl/js/widget.js" usecdn="true" />
|
||||
<load target="../../widget/tpl/css/widget.css" usecdn="true" />
|
||||
|
||||
<div class="clear"></div>
|
||||
<div id="zonePageContent">{$page_content}</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/page_admin.js")-->
|
||||
<load target="js/page_admin.js" usecdn="true" />
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<!--%import("filter/insert_mpage_content.xml")-->
|
||||
<!--%import("js/page_admin.js")-->
|
||||
<!--%import("css/page.css")-->
|
||||
<load target="js/page_admin.js" usecdn="true" />
|
||||
<load target="css/page.css" usecdn="true" />
|
||||
|
||||
<!--%import("../../widget/tpl/js/widget.js")-->
|
||||
<!--%import("../../widget/tpl/css/widget.css")-->
|
||||
<load target="../../widget/tpl/js/widget.js" usecdn="true" />
|
||||
<load target="../../widget/tpl/css/widget.css" usecdn="true" />
|
||||
|
||||
<div class="clear"></div>
|
||||
<div id="zonePageContent">{$page_content}</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/point_admin.js")-->
|
||||
<load target="js/point_admin.js" usecdn="true" />
|
||||
<h3 class="xeAdmin">{$lang->point} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
<!--@if($act=="dispPointAdminModuleConfig")-->
|
||||
<div class="infoText">{$lang->about_module_point}</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/point_admin.js")-->
|
||||
<load target="js/point_admin.js" usecdn="true" />
|
||||
<!--#include("header.html")-->
|
||||
|
||||
<p>{$lang->point_update_desc}</p>
|
||||
|
|
@ -47,12 +47,12 @@
|
|||
|
||||
<!-- 페이지 네비게이션 -->
|
||||
<div class="pagination a1">
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
<a href="{getUrl('page','','module_srl','')}" class="prevEnd">{$lang->first_page}</a>
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<!--@if($page == $page_no)-->
|
||||
<strong>{$page_no}</strong>
|
||||
<strong>{$page_no}</strong>
|
||||
<!--@else-->
|
||||
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
||||
<a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
<a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="nextEnd">{$lang->last_page}</a>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("filter/insert_point_module_config.xml")-->
|
||||
<!--%import("js/point_admin.js")-->
|
||||
<load target="js/point_admin.js" usecdn="true" />
|
||||
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, insert_point_module_config);" id="fo_point">
|
||||
<input type="hidden" name="target_module_srl" value="{$module_config['module_srl']?$module_config['module_srl']:$module_srls}" />
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/poll_admin.js")-->
|
||||
<load target="js/poll_admin.js" usecdn="true" />
|
||||
<!--#include("./header.html")-->
|
||||
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
xe.lang.msg_empty_search_target = '{$lang->msg_empty_search_target}';
|
||||
xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
||||
</script>
|
||||
<!--%import("js/poll_admin.js")-->
|
||||
<load target="js/poll_admin.js" usecdn="true" />
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("css/poll.css")-->
|
||||
<load target="css/poll.css" usecdn="true" />
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->poll_stop_date} : {zdate($poll->stop_date, "Y-m-d H:i")} {$lang->poll_join_count} : {number_format($poll->poll_count)}</h3>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/rss.js")-->
|
||||
<load target="js/rss.js" usecdn="true" />
|
||||
<div class="content" id="content">
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
<td class="title">{$value['feed_description']}</td>
|
||||
<td>
|
||||
<!--@foreach($lang->open_rss_types as $key2=>$value2)-->
|
||||
<input type="radio" name="open_rss" value="{$key2}" id="feed_open_{$key2}" <!--@if($key2 == $value['open_feed'])-->checked="checked"<!--@end--> /><label for="feed_open_{$key2}">{$value2}</label>
|
||||
<input type="radio" name="open_rss" value="{$key2}" id="feed_open_{$key2}" <!--@if($key2 == $value['open_feed'])-->checked="checked"<!--@end--> /><label for="feed_open_{$key2}">{$value2}</label>
|
||||
<!--@end-->
|
||||
</td>
|
||||
<td>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/session.js",optimized=false)-->
|
||||
<load target="js/session.js" usecdn="true" />
|
||||
|
||||
<h3 class="xeAdmin">{$lang->session} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
<div class="infoText">{nl2br($lang->about_session)}</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("js/spamfilter_admin.js")-->
|
||||
<load target="js/spamfilter_admin.js" usecdn="true" />
|
||||
<div class="content" id="content">
|
||||
|
||||
<form id="spamfilterDelete" action="" method="post">
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
<li>
|
||||
<p class="q">{$lang->cmd_interval}</p>
|
||||
<p class="a">
|
||||
<input type="radio" name="limits" id="spamCond1_yes" value="Y" <!--@if($config->limits=='Y' || $config->limits =='')-->checked="checked"<!--@end--> />
|
||||
<input type="radio" name="limits" id="spamCond1_yes" value="Y" <!--@if($config->limits=='Y' || $config->limits =='')-->checked="checked"<!--@end--> />
|
||||
<label for="spamCond1_yes">{$lang->yes}</label>
|
||||
<input type="radio" name="limits" id="spamCond1_no" value="N" <!--@if($config->limits!='Y' && $config->limits !='')--> checked="checked"<!--@end--> /> <label for="spamCond1_no">{$lang->no}</label>
|
||||
</p>
|
||||
|
|
@ -42,8 +42,8 @@
|
|||
</ul>
|
||||
</div>
|
||||
<p class="a">
|
||||
<textarea rows="4" cols="42" name="ipaddressList" title="스팸 IP 추가"></textarea>
|
||||
<span class="btn small"><button type="button" onclick="doInsertDeniedSome('ipaddressList')">{$lang->add}</button></span>
|
||||
<textarea rows="4" cols="42" name="ipaddressList" title="스팸 IP 추가"></textarea>
|
||||
<span class="btn small"><button type="button" onclick="doInsertDeniedSome('ipaddressList')">{$lang->add}</button></span>
|
||||
<span class="desc">{$lang->about_denied_ip}</span>
|
||||
</p>
|
||||
</li>
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
</ul>
|
||||
</div>
|
||||
<p class="a">
|
||||
<textarea rows="4" cols="42" name="wordList" title="스팸 키워드 추가"></textarea>
|
||||
<textarea rows="4" cols="42" name="wordList" title="스팸 키워드 추가"></textarea>
|
||||
<span class="btn small"><button type="button" onclick="doInsertDeniedSome('wordList')">{$lang->add}</button></span>
|
||||
<span class="desc">{$lang->about_denied_word}</span>
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("css/syndication.css")-->
|
||||
<!--%import("js/syndication.js")-->
|
||||
<load target="css/syndication.css" usecdn="true" />
|
||||
<load target="js/syndication.js" usecdn="true" />
|
||||
|
||||
<h3 class="xeAdmin">{$lang->syndication} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
<p class="summary">{$lang->about_syndication}</p>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
xe.lang.msg_empty_search_target = '{$lang->msg_empty_search_target}';
|
||||
xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
||||
</script>
|
||||
<!--%import("js/trackback_admin.js")-->
|
||||
<load target="js/trackback_admin.js" usecdn="true" />
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
<!--%import("js/trash_admin.js")-->
|
||||
<load target="js/trash_admin.js" usecdn="true" />
|
||||
<h3 class="xeAdmin">{$lang->cmd_trash} <span class="gray">{$lang->cmd_management}</span></h3>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
var confirm_restore_msg = '{$lang->confirm_restore}';
|
||||
var no_text_comment = '{$lang->no_text_comment}';
|
||||
</script>
|
||||
<!--%import("js/trash_admin.js")-->
|
||||
<load target="js/trash_admin.js" usecdn="true" />
|
||||
<div class="content" id="content">
|
||||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
|
|
@ -18,7 +18,7 @@ var no_text_comment = '{$lang->no_text_comment}';
|
|||
{$lang->trash}({number_format($total_count)})
|
||||
<span class="side"><span class="btn"><a href="#listManager" class="modalAnchor" onclick="getTrashList();">{$lang->document_manager}</a></span>
|
||||
<span class="btn"><button type="submit" name="is_all" value="true">{$lang->empty_trash_all}</button></span></span>
|
||||
|
||||
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<load target="js/widget.js" />
|
||||
<load target="css/widget.css" />
|
||||
<load target="js/widget.js" usecdn="true" />
|
||||
<load target="css/widget.css" usecdn="true" />
|
||||
|
||||
<div class="x" style="padding: 0 10px;">
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!--%import("../../admin/tpl/css/admin.css")-->
|
||||
<load target="../../admin/tpl/css/admin.css" usecdn="true" />
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$skin_info->title}</h3>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!--%import("css/widget.css")-->
|
||||
<!--%import("../../admin/tpl/css/admin.css")-->
|
||||
<load target="css/widget.css" usecdn="true" />
|
||||
<load target="../../admin/tpl/css/admin.css" usecdn="true" />
|
||||
|
||||
<div id="popHeader" class="wide">
|
||||
<h3 class="xeAdmin">{$lang->widget}</h3>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<include cond="$in_admin" target="header.html" />
|
||||
<load target="js/generate_code.js" />
|
||||
<load target="js/generate_code.js" usecdn="true" />
|
||||
|
||||
<h2 class="h2">{$widget_info->title}</h2>
|
||||
<p>{$widget_info->description}</p>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<load target="js/multi_order.js" />
|
||||
<load target="js/module_list.js" />
|
||||
<load target="js/multi_order.js" usecdn="true" />
|
||||
<load target="js/module_list.js" usecdn="true" />
|
||||
<!--%load_js_plugin("ui.colorpicker")-->
|
||||
|
||||
<ul>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<load target="../../admin/tpl/js/admin.js" />
|
||||
<load target="../../admin/tpl/css/admin.css" />
|
||||
<load target="../../admin/tpl/css/admin_{$lang_type}.css" />
|
||||
<load target="js/generate_code.js" />
|
||||
<load target="../../admin/tpl/js/admin.js" usecdn="true" />
|
||||
<load target="../../admin/tpl/css/admin.css" usecdn="true" />
|
||||
<load target="../../admin/tpl/css/admin_{$lang_type}.css" usecdn="true" />
|
||||
<load target="js/generate_code.js" usecdn="true" />
|
||||
|
||||
<script type="text/javascript">
|
||||
xe.lang.cmd_delete = '{$lang->cmd_delete}';
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
<load target="../../admin/tpl/js/admin.js" />
|
||||
<load target="../../admin/tpl/css/admin.css" />
|
||||
<load target="../../admin/tpl/css/admin_{$lang_type}.css" />
|
||||
<load target="css/widget.css" />
|
||||
<load target="js/generate_code.js" />
|
||||
<load target="../../admin/tpl/js/admin.js" usecdn="true" />
|
||||
<load target="../../admin/tpl/css/admin.css" usecdn="true" />
|
||||
<load target="../../admin/tpl/css/admin_{$lang_type}.css" usecdn="true" />
|
||||
<load target="css/widget.css" usecdn="true" />
|
||||
<load target="js/generate_code.js" usecdn="true" />
|
||||
<!--%load_js_plugin("ui.colorpicker")-->
|
||||
|
||||
<script type="text/javascript">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue