묻고답하기

/www/modules/board/skins

으로 이동하여 해당 게시판 스킨의 [ write_form.html ] 를 수정해야 하는 것까지는 알겠습니다.

하지만 Xe 버전이 많이 업데이트 되면서 예전 참조글과는 많이 상반되고 있는 터라..

해당 소스는 [ Xedition ] 스킨의 소스 부분 입니다.

어디를 수정봐야 할지 알려주시면 .... 감사드리겠습니다.

 

 

<include target="_header.html" />
<form action="./" method="post" onsubmit="return procFilter(this, window.insert)" class="board_write">
 <input type="hidden" name="mid" value="{$mid}" />
 <input type="hidden" name="content" value="{$oDocument->getContentText()}" />
 <input type="hidden" name="document_srl" value="{$document_srl}" />
 <div class="write_header">
  <select name="category_srl" cond="$module_info->use_category=='Y'">
   <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>
  <input cond="$oDocument->getTitleText()" type="text" name="title" class="iText" title="{$lang->title}" value="{htmlspecialchars($oDocument->getTitleText())}" />
  <input cond="!$oDocument->getTitleText()" type="text" name="title" class="iText" title="{$lang->title}" />
  <input cond="$grant->manager" type="checkbox" name="is_notice" value="Y" class="iCheck" checked="checked"|cond="$oDocument->isNotice()" id="is_notice" />
  <label cond="$grant->manager" for="is_notice">{$lang->notice}</label>
 </div>
    <div class="exForm" cond="count($extra_keys)">
  <table cond="count($extra_keys)" border="1" cellspacing="0" summary="Extra Form">
   <caption><em>*</em> : {$lang->is_required}</caption>
   <tr loop="$extra_keys=>$key,$val">
    <th scope="row"><em cond="$val->is_required=='Y'">*</em> {$val->name}</th>
    <td>{$val->getFormHTML()}</td>
   </tr>
  </table>
 </div>
    <div class="write_editor">
  {$oDocument->getEditor()}
 </div>
 <div class="write_footer">
  <div class="write_option">
   <block cond="$grant->manager">
    <input type="checkbox" name="title_bold" id="title_bold" class="iCheck" value="Y" checked="checked"|cond="$oDocument->get('title_bold')=='Y'" />
    <label for="title_bold">{$lang->title_bold}</label>
   </block>
   <input cond="$module_info->secret=='Y'" type="checkbox" name="is_secret" class="iCheck" value="Y" checked="checked"|cond="$oDocument->isSecret()" id="is_secret" />
   <label cond="$module_info->secret=='Y'" for="is_secret">{$lang->secret}</label>
            <input type="checkbox" name="comment_status" class="iCheck" value="ALLOW" checked="checked"|cond="$oDocument->allowComment()" id="comment_status" />
            <label for="comment_status">{$lang->allow_comment}</label>
            <input type="checkbox" name="allow_trackback" class="iCheck" value="Y" checked="checked"|cond="$oDocument->allowTrackback()" id="allow_trackback" />
            <label for="allow_trackback">{$lang->allow_trackback}</label>
   <block cond="$is_logged">
    <input type="checkbox" name="notify_message" class="iCheck" value="Y" checked="checked"|cond="$oDocument->useNotify()" id="notify_message" />
    <label for="notify_message">{$lang->notify}</label>
   </block>
   <!--@if(is_array($status_list))-->
    <!--@foreach($status_list AS $key=>$value)-->
    <input type="radio" name="status" value="{$key}" id="{$key}" <!--@if($oDocument->get('status') == $key || ($key == 'PUBLIC' && !$document_srl))-->checked="checked"<!--@end--> />
    <label for="{$key}">{$value}</label>
    <!--@end-->
   <!--@end-->
  </div>
  <div class="write_author">
   <span class="item" cond="!$is_logged">
    <label for="userName" class="iLabel">{$lang->writer}</label>
    <input type="text" name="nick_name" id="userName" class="iText userName" style="width:80px" value="{htmlspecialchars($oDocument->get('nick_name'))}" />
   </span>
   <span class="item" cond="!$is_logged">
    <label for="userPw" class="iLabel">{$lang->password}</label>
    <input type="password" name="password" id="userPw" class="iText userPw" style="width:80px" />
   </span>
   <span class="item" cond="!$is_logged">
    <label for="homePage" class="iLabel">{$lang->homepage}</label>
    <input type="text" name="homepage" id="homePage" class="iText homePage"  style="width:140px"value="{htmlspecialchars($oDocument->get('homepage'))}" />
   </span>
   <span class="item">
    <label for="tags" class="iLabel">{$lang->tag}: {$lang->about_tag}</label>
    <input type="text" name="tags" id="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="iText" style="width:300px" title="Tag" />
   </span>  
  </div>
  <div class="btnArea">
   <block cond="!$oDocument->isExists() || $oDocument->get('status') == 'TEMP'">
   <button cond="$is_logged" class="btn" type="button" onclick="doDocumentSave(this);">{$lang->cmd_temp_save}</button>
   <button cond="$is_logged" class="btn" type="button" onclick="doDocumentLoad(this);">{$lang->cmd_load}</button>
   </block>
   <button type="submit" class="btn_insert"><i class="xi-pen"></i> {$lang->cmd_registration}</button>
  </div>
 </div>
</form>
<include target="_footer.html" />
 

 

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
lonely Cain css에서 body의 마진값 조절? [4] 2007.08.10
전윤정 노프레임으로 홈을 만들다가... [1] 2007.08.10
박수명 페이지를 열때.. [1] 2007.08.10
장워니 노프레임에서요..질문있어용..^^ [3] 2007.08.10
정성호 스크롤바를 따라다니는 메뉴 질문입니다. [3] 2007.08.10
히프노스 제로보드를요~  
하늘구름 위치 설정에 대해서... [2] 2007.08.10
이은종 스샷보시고 답변좀..테이블간격에대해... [6] 2007.08.10
최은영 방명록 [1] 2007.08.10
최석용 자료링크시 다운로드 가속기 피하는 방법은 ? [4] 2007.08.10
날개 젠드로 제작된 php수정할려면..? [1] 2007.08.10
최영배 창의 크기 변화시 위치 고정 방법 없을까요? 이 사이트 처럼이요 [2] 2007.08.10
화이트쪼꼬렛 ^_^ [[[[[[[[[[[ 도트강좌요청 ]]]]]]]]]]]  
―츄ΟΙ 제로보드 설치하는법 가르켜 주세요T_T [3] 2007.08.10
beargene♂ [PHP]서버컴 아니면 php 구현된거 못보나요? [3] 2007.08.10
컴돌이:) 레이어 합칠때 효과를 그대로... [1] 2007.08.10
안용석 메인 [1] 2007.08.10
엠피매니아 nzeo.com의 북마크와 핫키를 사용할 수 있는 방법이 있을까요? [3] 2007.08.10
고성민 새창 띄울 때 문제... [2] 2007.08.10
까리 한링크로 동시에 두프레임 내용 바꾸기하려다 질문요...ㅡ.ㅡ;; [1] 2007.08.10