쇼핑몰 관리자 ckeditor 적용

This commit is contained in:
chicpro
2013-01-25 14:51:28 +09:00
parent 6ad929a65b
commit aa46e077e8
7 changed files with 66 additions and 91 deletions

View File

@ -1,7 +1,7 @@
<? <?
$sub_menu = "400700"; $sub_menu = "400700";
define('G4_EDITOR', 1);
include_once("./_common.php"); include_once("./_common.php");
include_once ("$g4[path]/lib/cheditor4.lib.php");
auth_check($auth[$sub_menu], "w"); auth_check($auth[$sub_menu], "w");
@ -34,9 +34,6 @@ include_once ("$g4[admin_path]/admin.head.php");
<?=subtitle($html_title)?><p> <?=subtitle($html_title)?><p>
<script src="<?=$g4[cheditor4_path]?>/cheditor.js"></script>
<?=cheditor1('co_content', '100%', '350');?>
<table cellpadding=0 cellspacing=0 width=100%> <table cellpadding=0 cellspacing=0 width=100%>
<form name=frmcontentform method=post action="./contentformupdate.php" enctype="MULTIPART/FORM-DATA" onsubmit="return frmcontentform_check(this);"> <form name=frmcontentform method=post action="./contentformupdate.php" enctype="MULTIPART/FORM-DATA" onsubmit="return frmcontentform_check(this);">
<input type=hidden name=w value='<? echo $w?>'> <input type=hidden name=w value='<? echo $w?>'>
@ -59,7 +56,7 @@ include_once ("$g4[admin_path]/admin.head.php");
<input type=hidden name=co_html value=1> <input type=hidden name=co_html value=1>
<tr> <tr>
<td>내용</td> <td>내용</td>
<td style='padding-top:5px; padding-bottom:5px;'><?=cheditor2('co_content', $co[co_content]);?></td> <td style='padding-top:5px; padding-bottom:5px;'><?=editor_html('co_content', $co[co_content]);?></td>
</tr> </tr>
<tr class=ht> <tr class=ht>
<td>상단 파일 경로</td> <td>상단 파일 경로</td>
@ -115,7 +112,7 @@ function frmcontentform_check(f)
errmsg = ""; errmsg = "";
errfld = ""; errfld = "";
<?=cheditor3('co_content');?> <?=get_editor_js('co_content');?>
check_field(f.co_id, "ID를 입력하세요."); check_field(f.co_id, "ID를 입력하세요.");
check_field(f.co_subject, "제목을 입력하세요."); check_field(f.co_subject, "제목을 입력하세요.");

View File

@ -1,7 +1,7 @@
<? <?
$sub_menu = "400710"; $sub_menu = "400710";
define('G4_EDITOR', 1);
include_once("./_common.php"); include_once("./_common.php");
include_once ("$g4[path]/lib/cheditor4.lib.php");
auth_check($auth[$sub_menu], "w"); auth_check($auth[$sub_menu], "w");
@ -33,10 +33,6 @@ include_once ("$g4[admin_path]/admin.head.php");
<?=subtitle($html_title)?><p> <?=subtitle($html_title)?><p>
<script src="<?=$g4[cheditor4_path]?>/cheditor.js"></script>
<?=cheditor1('fa_subject', '100%', '150');?>
<?=cheditor1('fa_content', '100%', '300');?>
<form name=frmfaqform method=post action='./faqformupdate.php' onsubmit="return frmfaqform_check(this);" style="margin:0px;"> <form name=frmfaqform method=post action='./faqformupdate.php' onsubmit="return frmfaqform_check(this);" style="margin:0px;">
<input type=hidden name=w value='<? echo $w ?>'> <input type=hidden name=w value='<? echo $w ?>'>
<input type=hidden name=fm_id value='<? echo $fm_id ?>'> <input type=hidden name=fm_id value='<? echo $fm_id ?>'>
@ -60,13 +56,13 @@ include_once ("$g4[admin_path]/admin.head.php");
?> ?>
</td> </td>
<td style='padding-top:5px; padding-bottom:5px;'> <td style='padding-top:5px; padding-bottom:5px;'>
<?=cheditor2('fa_subject', $fa[fa_subject]);?> <?=editor_html('fa_subject', $fa[fa_subject]);?>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> 답변</td> <td> 답변</td>
<td style='padding-top:5px; padding-bottom:5px;'> <td style='padding-top:5px; padding-bottom:5px;'>
<?=cheditor2('fa_content', $fa[fa_content]);?> <?=editor_html('fa_content', $fa[fa_content]);?>
</td> </td>
</tr> </tr>
<tr><td colspan=2 height=1 bgcolor=CCCCCC><td></tr> <tr><td colspan=2 height=1 bgcolor=CCCCCC><td></tr>
@ -93,8 +89,8 @@ function frmfaqform_check(f)
return false; return false;
} }
<?=cheditor3('fa_subject');?> <?=get_editor_js('fa_subject');?>
<?=cheditor3('fa_content');?> <?=get_editor_js('fa_content');?>
return true; return true;
} }

View File

@ -1,7 +1,7 @@
<? <?
$sub_menu = "400710"; $sub_menu = "400710";
define('G4_EDITOR', 1);
include_once("./_common.php"); include_once("./_common.php");
include_once ("$g4[path]/lib/cheditor4.lib.php");
auth_check($auth[$sub_menu], "w"); auth_check($auth[$sub_menu], "w");
@ -26,10 +26,6 @@ include_once ("$g4[admin_path]/admin.head.php");
<?=subtitle($html_title)?> <?=subtitle($html_title)?>
<script src="<?=$g4[cheditor4_path]?>/cheditor.js"></script>
<?=cheditor1('fm_head_html', '100%', '150');?>
<?=cheditor1('fm_tail_html', '100%', '150');?>
<form name=frmfaqmasterform method=post action="./faqmasterformupdate.php" onsubmit="return frmfaqmasterform_check(this);"enctype="MULTIPART/FORM-DATA" style="margin:0px;"> <form name=frmfaqmasterform method=post action="./faqmasterformupdate.php" onsubmit="return frmfaqmasterform_check(this);"enctype="MULTIPART/FORM-DATA" style="margin:0px;">
<input type=hidden name=w value='<? echo $w ?>'> <input type=hidden name=w value='<? echo $w ?>'>
<input type=hidden name=fm_id value='<? echo $fm_id ?>'> <input type=hidden name=fm_id value='<? echo $fm_id ?>'>
@ -82,11 +78,11 @@ include_once ("$g4[admin_path]/admin.head.php");
<tr> <tr>
<td>상단 내용</td> <td>상단 내용</td>
<td style='padding-top:5px; padding-bottom:5px;'><?=cheditor2('fm_head_html', $fm[fm_head_html]);?></td> <td style='padding-top:5px; padding-bottom:5px;'><?=editor_html('fm_head_html', $fm[fm_head_html]);?></td>
</tr> </tr>
<tr> <tr>
<td>하단 내용</td> <td>하단 내용</td>
<td style='padding-top:5px; padding-bottom:5px;'><?=cheditor2('fm_tail_html', $fm[fm_tail_html]);?></td> <td style='padding-top:5px; padding-bottom:5px;'><?=editor_html('fm_tail_html', $fm[fm_tail_html]);?></td>
</tr> </tr>
<tr><td colspan=2 height=1 bgcolor=CCCCCC></td></tr> <tr><td colspan=2 height=1 bgcolor=CCCCCC></td></tr>
</table> </table>
@ -99,8 +95,8 @@ include_once ("$g4[admin_path]/admin.head.php");
<script language="javascript"> <script language="javascript">
function frmfaqmasterform_check(f) function frmfaqmasterform_check(f)
{ {
<?=cheditor3('fm_head_html');?> <?=get_editor_js('fm_head_html');?>
<?=cheditor3('fm_tail_html');?> <?=get_editor_js('fm_tail_html');?>
} }
document.frmfaqmasterform.fm_subject.focus(); document.frmfaqmasterform.fm_subject.focus();

View File

@ -1,7 +1,7 @@
<? <?
$sub_menu = "400630"; $sub_menu = "400630";
define('G4_EDITOR', 1);
include_once("./_common.php"); include_once("./_common.php");
include_once ("$g4[path]/lib/cheditor4.lib.php");
auth_check($auth[$sub_menu], "w"); auth_check($auth[$sub_menu], "w");
@ -37,10 +37,6 @@ include_once ("$g4[admin_path]/admin.head.php");
<?=subtitle($html_title);?><p> <?=subtitle($html_title);?><p>
<script src="<?=$g4[cheditor4_path]?>/cheditor.js"></script>
<?=cheditor1('ev_head_html', '100%', '150');?>
<?=cheditor1('ev_tail_html', '100%', '150');?>
<form name=feventform method=post action="./itemeventformupdate.php" enctype="MULTIPART/FORM-DATA" style="margin:0px;" onsubmit="return feventform_check(this);"> <form name=feventform method=post action="./itemeventformupdate.php" enctype="MULTIPART/FORM-DATA" style="margin:0px;" onsubmit="return feventform_check(this);">
<input type=hidden name=w value='<? echo $w ?>'> <input type=hidden name=w value='<? echo $w ?>'>
<input type=hidden name=ev_id value='<? echo $ev_id ?>'> <input type=hidden name=ev_id value='<? echo $ev_id ?>'>
@ -164,11 +160,11 @@ include_once ("$g4[admin_path]/admin.head.php");
<tr> <tr>
<td>상단 내용</td> <td>상단 내용</td>
<td colspan=3 align=right style='padding-top:5px; padding-bottom:5px;'><?=cheditor2('ev_head_html', $ev[ev_head_html]);?></td> <td colspan=3 align=right style='padding-top:5px; padding-bottom:5px;'><?=editor_html('ev_head_html', $ev[ev_head_html]);?></td>
</tr> </tr>
<tr> <tr>
<td>하단 내용</td> <td>하단 내용</td>
<td colspan=3 align=right style='padding-top:5px; padding-bottom:5px;'><?=cheditor2('ev_tail_html', $ev[ev_tail_html]);?></td> <td colspan=3 align=right style='padding-top:5px; padding-bottom:5px;'><?=editor_html('ev_tail_html', $ev[ev_tail_html]);?></td>
</tr> </tr>
<tr><td colspan=4 height=1 bgcolor=#CCCCCC></td></tr> <tr><td colspan=4 height=1 bgcolor=#CCCCCC></td></tr>
</table> </table>
@ -182,8 +178,8 @@ include_once ("$g4[admin_path]/admin.head.php");
<script language="javascript"> <script language="javascript">
function feventform_check(f) function feventform_check(f)
{ {
<?=cheditor3('ev_head_html');?> <?=get_editor_js('ev_head_html');?>
<?=cheditor3('ev_tail_html');?> <?=get_editor_js('ev_tail_html');?>
return true; return true;
} }

View File

@ -1,7 +1,7 @@
<? <?
$sub_menu = "400300"; $sub_menu = "400300";
define('G4_EDITOR', 1);
include_once("./_common.php"); include_once("./_common.php");
include_once ($g4['path'].'/lib/cheditor4.lib.php');
auth_check($auth[$sub_menu], "w"); auth_check($auth[$sub_menu], "w");
@ -76,11 +76,6 @@ $g4[title] = $html_title;
include_once ("$g4[admin_path]/admin.head.php"); include_once ("$g4[admin_path]/admin.head.php");
?> ?>
<script src="<?=$g4[cheditor4_path]?>/cheditor.js"></script>
<?=cheditor1('it_explan', '100%', '350');?>
<?=cheditor1('it_head_html', '100%', '150');?>
<?=cheditor1('it_tail_html', '100%', '150');?>
<style type="text/css"> <style type="text/css">
<!-- <!--
ul { margin: 0; padding: 0; list-style: none; } ul { margin: 0; padding: 0; list-style: none; }
@ -312,7 +307,7 @@ ul { margin: 0; padding: 0; list-style: none; }
<input type=hidden name=it_explan_html value=1> <input type=hidden name=it_explan_html value=1>
<tr> <tr>
<td>상품설명</td> <td>상품설명</td>
<td colspan=3 style='padding-top:7px; padding-bottom:7px;'><?=cheditor2('it_explan', $it[it_explan]);?></td> <td colspan=3 style='padding-top:7px; padding-bottom:7px;'><?=editor_html('it_explan', $it[it_explan]);?></td>
</tr> </tr>
<? if($default['de_send_cost_case'] == "개별배송") { ?> <? if($default['de_send_cost_case'] == "개별배송") { ?>
<tr class="ht"> <tr class="ht">
@ -792,11 +787,11 @@ ul { margin: 0; padding: 0; list-style: none; }
<tr> <tr>
<td>상품상단내용 <?=help("상품상세설명 페이지 상단에 출력하는 HTML 내용입니다.", -150);?></td> <td>상품상단내용 <?=help("상품상세설명 페이지 상단에 출력하는 HTML 내용입니다.", -150);?></td>
<td colspan=3 align=right style='padding-top:7px; padding-bottom:7px;'><?=cheditor2('it_head_html', $it[it_head_html]);?></td> <td colspan=3 align=right style='padding-top:7px; padding-bottom:7px;'><?=editor_html('it_head_html', $it[it_head_html]);?></td>
</tr> </tr>
<tr> <tr>
<td>상품하단내용 <?=help("상품상세설명 페이지 상단에 출력하는 HTML 내용입니다.", -150);?></td> <td>상품하단내용 <?=help("상품상세설명 페이지 상단에 출력하는 HTML 내용입니다.", -150);?></td>
<td colspan=3 align=right style='padding-top:7px; padding-bottom:7px;'><?=cheditor2('it_tail_html', $it[it_tail_html]);?></td> <td colspan=3 align=right style='padding-top:7px; padding-bottom:7px;'><?=editor_html('it_tail_html', $it[it_tail_html]);?></td>
</tr> </tr>
<? if ($w == "u") { ?> <? if ($w == "u") { ?>
@ -918,9 +913,9 @@ function fitemformcheck(f)
} }
} }
<?=cheditor3('it_explan')."\n";?> <?=get_editor_js('it_explan');?>
<?=cheditor3('it_head_html')."\n";?> <?=get_editor_js('it_head_html');?>
<?=cheditor3('it_tail_html')."\n";?> <?=get_editor_js('it_tail_html');?>
return true; return true;
} }

View File

@ -1,7 +1,7 @@
<? <?
$sub_menu = "400650"; $sub_menu = "400650";
define('G4_EDITOR', 1);
include_once("./_common.php"); include_once("./_common.php");
include_once ("$g4[path]/lib/cheditor4.lib.php");
auth_check($auth[$sub_menu], "w"); auth_check($auth[$sub_menu], "w");
@ -21,8 +21,6 @@ include_once ("$g4[admin_path]/admin.head.php");
$qstr = "page=$page&sort1=$sort1&sort2=$sort2"; $qstr = "page=$page&sort1=$sort1&sort2=$sort2";
?> ?>
<script src="<?=$g4[cheditor4_path]?>/cheditor.js"></script>
<?=cheditor1('is_content', '100%', '350');?>
<?=subtitle($g4[title])?> <?=subtitle($g4[title])?>
@ -58,7 +56,7 @@ $qstr = "page=$page&sort1=$sort1&sort2=$sort2";
<td> <td>
<!-- <?=textarea_size("is_content")?> <!-- <?=textarea_size("is_content")?>
<textarea id='is_content' name="is_content" rows="10" style='width:99%;' class=ed required itemname='내용'><? echo get_text($is[is_content]) ?></textarea> --> <textarea id='is_content' name="is_content" rows="10" style='width:99%;' class=ed required itemname='내용'><? echo get_text($is[is_content]) ?></textarea> -->
<?=cheditor2('is_content', $is['is_content']);?> <?=editor_html('is_content', $is['is_content']);?>
</td> </td>
</tr> </tr>
<tr height=25> <tr height=25>
@ -76,7 +74,7 @@ $qstr = "page=$page&sort1=$sort1&sort2=$sort2";
<script> <script>
function fitemps_submit(f) function fitemps_submit(f)
{ {
<? echo cheditor3('is_content'); ?> <? echo get_editor_js('is_content'); ?>
f.action="./itempsformupdate.php"; f.action="./itempsformupdate.php";
return true; return true;

View File

@ -1,7 +1,7 @@
<? <?
$sub_menu = "400720"; $sub_menu = "400720";
define('G4_EDITOR', 1);
include_once("./_common.php"); include_once("./_common.php");
include_once ("$g4[path]/lib/cheditor4.lib.php");
auth_check($auth[$sub_menu], "w"); auth_check($auth[$sub_menu], "w");
@ -30,9 +30,6 @@ include_once ("$g4[admin_path]/admin.head.php");
<?=subtitle($html_title)?> <?=subtitle($html_title)?>
<script src="<?=$g4[cheditor4_path]?>/cheditor.js"></script>
<?=cheditor1('nw_content', '100%', '350');?>
<form name=frmnewwin method=post action="./newwinformupdate.php" onsubmit="return frmnewwin_check(this);" style="margin:0px;"> <form name=frmnewwin method=post action="./newwinformupdate.php" onsubmit="return frmnewwin_check(this);" style="margin:0px;">
<input type=hidden name=w value='<? echo $w ?>'> <input type=hidden name=w value='<? echo $w ?>'>
<input type=hidden name=nw_id value='<? echo $nw_id ?>'> <input type=hidden name=nw_id value='<? echo $nw_id ?>'>
@ -75,7 +72,7 @@ include_once ("$g4[admin_path]/admin.head.php");
<input type=hidden name=nw_content_html value=1> <input type=hidden name=nw_content_html value=1>
<tr> <tr>
<td>내용</td> <td>내용</td>
<td colspan=3 style='padding-top:5px; padding-bottom:5px;'><?=cheditor2('nw_content', $nw[nw_content]);?></td> <td colspan=3 style='padding-top:5px; padding-bottom:5px;'><?=editor_html('nw_content', $nw[nw_content]);?></td>
</tr> </tr>
<tr><td colspan=4 height=1 bgcolor=CCCCCC></td></tr> <tr><td colspan=4 height=1 bgcolor=CCCCCC></td></tr>
</table> </table>
@ -91,7 +88,7 @@ function frmnewwin_check(f)
errmsg = ""; errmsg = "";
errfld = ""; errfld = "";
<?=cheditor3('nw_content');?> <?=get_editor_js('nw_content');?>
check_field(f.nw_subject, "제목을 입력하세요."); check_field(f.nw_subject, "제목을 입력하세요.");