묻고답하기
스케치북 5최신버전에서 특정확장변수를 관리자와 특정그룹만 보게 하고 싶습니다.
2015.01.15 19:06
스케치북 최신버전 1.7.0 버전을 사용 하고 있습니다.
그런데 특정 게시판 특정확장변수를 관리자와 특정그룹에게만 보이게 하고 싶습니다.
<div class="rd_body clear"> <!--// Extra Var --> <table cond="!$mi->et_var && $oDocument->isExtraVarsExists() && (!$oDocument->isSecret() || $oDocument->isGranted())" class="et_vars bd_tb"> <caption class="blind">Extra Form</caption> {@ $etIdx=1 } <tr loop="$oDocument->getExtraVars() => $key,$val" cond="$val->getValueHTML() && $val->eid!='rd_preview'" class="bg{$etIdx%2}"> <th scope="row">{$val->name}</th> <td cond="$val->eid!='rating'">{$val->getValueHTML()}</td> <td cond="$val->eid=='rating'" class="rating"><span class="starRating" title="{$val->getValueHTML()}{$lang->score}"><span style="width:{$val->getValueHTML()*10}%">{$val->getValueHTML()}</span></span></td> {@ $etIdx++ } </tr> </table> <!--// 본문에 이미지 없을 때 --> <p cond="$mi->no_attached_img && !$oDocument->thumbnailExists()" style="margin-bottom:30px;text-align:center"><img src="{$mi->no_attached_img}" alt="No Attached Image" /></p>
이부분을 고치고 싶은데 어떻게 하면 될까요?
댓글 2
-
옆집옵하
2015.12.17 00:42
-
DarkBLling
2015.12.17 09:57
htdocs\modules\board\skins\sketchbook5\write_form.html 에서
<!--// 상단 : 카테고리, 제목 -->
<table class="bd_wrt_hd bd_tb">
<tr>
<td>
<select cond="$mi->use_category=='Y' && $category_list" name="category_srl" class="category">
<option value="">{$lang->category}</option>
<option loop="$category_list => $val" disabled="disabled"|cond="!$val->grant" value="{$val->category_srl}" selected="selected"|cond="$val->grant&&$val->selected||$val->category_srl==$oDocument->get('category_srl')">
{str_repeat(" ",$val->depth)} {$val->title} ({$val->document_count})
</option>
</select>
</td>
<td width="100%">
<span class="itx_wrp">
<label for="postTitle">{$lang->title}</label>
<input type="text" name="title" class="itx" id="postTitle" title="{$lang->title}" value="{htmlspecialchars($oDocument->getTitleText())}"|cond="$oDocument->getTitleText()" />
</span>
</td>
<td cond="$is_logged && !$oDocument->isExists() || $oDocument->get('status')=='TEMP'" class="m_no"><button type="button" class="bd_btn" onclick="doDocumentLoad(this);">{$lang->cmd_load}</button></td>
</tr>
</table>----------------------------------------------------------------내용 추가-------------------------------------------------------------------------------------------
<table cond="count($extra_keys)" class="et_vars exForm bd_tb">
<caption><strong><em>*</em></strong> <small>: {$lang->is_required}</small></caption>
<tr loop="$extra_keys=>$key,$val" cond="$logged_info->is_admin=='Y'||($logged_info->group_list[2]&&$val->idx==1)"> <!--// group_list[2] 정회원 idx<-보여줄 확장변수 -->
<th scope="row"><em cond="$val->is_required=='Y'">*</em> {$val->name}</th>
<td>{$val->getFormHTML()}</td>
</tr>
</table>----------------------------------------------------------------내용 추가-------------------------------------------------------------------------------------------
바라던걸 찾긴 햇는데.... 답변이 없는걸로 봐선 안되나봅니다 ㅠㅠ