게시판 스킨에서 글쓰기 textarea 위치가 궁금합니다.

게시판 스킨에서 글쓰기 textarea 위치가 궁금합니다.

QA

게시판 스킨에서 글쓰기 textarea 위치가 궁금합니다.

답변 1

본문

write.skin.php 에서는 div로 이루어져있는데요

<div class="contentArea write_div" style="margin-top:30px;">
        <label for="" class="sound_only"></label>
        <span class="subject">추가사항</span>
        <div title="추가사항" class="contentInput  <?php echo $is_dhtml_editor ? $config['cf_editor'] : ''; ?>">
            <?php if($write_min || $write_max) { ?>
            <!-- 최소/최대 글자 수 사용 시 -->
            <p id="char_count_desc">이 게시판은 최소 <strong><?php echo $write_min; ?></strong>글자 이상, 최대 <strong><?php echo $write_max; ?></strong>글자 이하까지 글을 쓰실 수 있습니다.</p>
            <?php } ?>
            <?php echo $editor_html; // 에디터 사용시는 에디터로, 아니면 textarea 로 노출 ?>
            <?php if($write_min || $write_max) { ?>
            <!-- 최소/최대 글자 수 사용 시 -->
            <div id="char_count_wrap"><span id="char_count"></span>글자</div>
            <?php } ?>
        </div>

    </div>

 

PHP 내부에 textarea가 있는 것 같은데 어디에 있죠?

이 질문에 댓글 쓰기 :

답변 1

<?php echo $editor_html; // 에디터 사용시는 에디터로, 아니면 textarea 로 노출 ?>

 

위 내용은 아래 함수에 설정되어 있네요.

 

lib/editor.lib.php
 

function editor_html($id, $content)
{
    return "<textarea id=\"$id\" name=\"$id\" style=\"width:100%;\" maxlength=\"65536\">$content</textarea>";
}

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 51
© SIRSOFT
현재 페이지 제일 처음으로