[그누•영카트] 그누보드5 최소 글수 제한 관리자와 특정레벨 예외로 하기
페이지 정보
루루아빠
3,206
2015.08.05 16:06:15
짧은주소
-
https://yadolee.com/tip/267 주소복사
본문
그누보드5/bbs/write_update.php 를 열고
수정 전
그누보드5/plugin/editor/ckeditor4_eyoom/editor.lib.php 를 열고
수정 전
수정 전
if ($wr_content == '') {
$msg[] = '<strong>내용</strong>을 입력하세요.';
}
수정 후
if ($wr_content == '' && $member[mb_level] <= '4' && !$is_admin && !$board['bo_write_min']) { // 루루아빠 수정 / 관리자와 5레벨 이상은 본문 글자수 제한 안받기
$msg[] = '<strong>내용</strong>을 입력하세요.';
}
그누보드5/plugin/editor/ckeditor4_eyoom/editor.lib.php 를 열고
수정 전
// textarea 의 값이 비어 있는지 검사
function chk_editor_js($id, $is_dhtml_editor=true)
{
if ($is_dhtml_editor) {
return "if (!{$id}_editor_data) { alert(\"내용을 입력해 주십시오.\"); CKEDITOR.instances.{$id}.focus(); return false; }\nif (typeof(f.{$id})!=\"undefined\") f.{$id}.value = {$id}_editor_data;\n";
} else {
return "if (!{$id}_editor.value) { alert(\"내용을 입력해 주십시오.\"); {$id}_editor.focus(); return false; }\n";
}
}
수정 후
// textarea 의 값이 비어 있는지 검사
function chk_editor_js($id, $is_dhtml_editor=true)
{
global $write_min, $is_admin, $is_member;
if(!$write_min || $is_admin || $member[mb_level] >= '5') return; // 루루아빠 수정 / 관리자와 5레벨 이상은 본문 글자수 제한 안받기
if ($is_dhtml_editor) {
return "if (!{$id}_editor_data) { alert(\"내용을 입력해 주십시오.\"); CKEDITOR.instances.{$id}.focus(); return false; }\nif (typeof(f.{$id})!=\"undefined\") f.{$id}.value = {$id}_editor_data;\n";
} else {
return "if (!{$id}_editor.value) { alert(\"내용을 입력해 주십시오.\"); {$id}_editor.focus(); return false; }\n";
}
}
추천인
레벨 101
경험치 1,519,440
Progress Bar 14.66%
- 가입일 : 2015-03-04 03:24:54
- 서명 : KNOW YOUR LIMITS
BUT NEVER STOP TRYING TO EXCEED THEM !!
- 자기소개 : 루루의 자랑
루루아빠랍니다~~
최신댓글이 없습니다.


댓글
첫 번째 댓글을 남겨 주세요