묻고답하기
게시판 글자색 특정회원 설정방법 (수정좀 부탁드립니다.)
2015.04.28 18:08
문의드립니다.
게시판글자색 특정회원 설정방법을 알고 싶습니다.
스케치북 게시판 사용중입니다.
빨간부분이 추가된 부분입니다. 근데 적용이 안되네요
write_form.html 에서는
<!--// 글쓰기 옵션 체크 -->
<div class="opt_chk clear">
<div cond="$grant->manager||$logged_info->group_list[51155]||$mi->tl_color=='2'" class="section">
<!--%load_js_plugin("ui.colorpicker")-->
<span class="itx_wrp color_wrp" title="{$lang->title_color}">
<label for="title_color">{$lang->title_color}</label>
<input type="text" name="title_color" id="title_color" class="itx color-indicator" value="{$oDocument->get('title_color')}"|cond="$oDocument->get('title_color')!='N'" />
</span>
<input type="checkbox" name="title_bold" id="title_bold" value="Y" checked="checked"|cond="$oDocument->get('title_bold')=='Y'" />
<label for="title_bold">{$lang->title_bold}</label>
<block cond="$grant->manager||$logged_info->group_list[51155]">
<input type="checkbox" name="is_notice" value="Y" checked="checked"|cond="$oDocument->isNotice()" id="is_notice" />
<label for="is_notice">{$lang->notice}</label>
</block>
</div>
board.controller.php 에서는
if(!$this->grant->manager&&!$logged_info->group_list[51155])
{
unset($obj->title_color);
unset($obj->title_bold);
}
어떤 문제가 있는걸까요??
글자색상 / 공지 / 글꼴두께 세가지 모두다 체크가능한데
실질적으론 적용이 안되고 있습니다.
unset($obj->title_color);
이부분을 주석처리 하니깐 글씨 색상은 변경이 됩니다.
(쓰기 했을때만 가능하며 글 수정할경우 안됩니다.)
어떻게 수정을 해야 하는지 부탁드립니다.
감사합니다.