게시판 별로 placeholder
본문
// www/plugin/editor/smarteditor2/editor.lib
$html .= "\n<textarea id=\"$id\" name=\"$id\" class=\"$smarteditor_class\" maxlength=\"65536\" style=\"width:100%;\" placeholder=\"내용을 입력해주세요.\">$content</textarea>";
placeholder는 넣은 상태입니다.
각각 게시판 별로 다르게 사용하고싶습니다
방법을 알려주세요!
답변 2
1. /extend/user.config.php 에 추가
if ($bo_table == "aa")
$placeholder = "내용1";
else if ($bo_table == "bb")
$placeholder = "내용2";
...
2. /plugin/editor/smarteditor2/editor.lib.php
$html .= "\n<textarea id=\"$id\" name=\"$id\" class=\"$smarteditor_class\" maxlength=\"65536\" style=\"width:100%;\" placeholder=\"{$placeholder}\">$content</textarea>";
php if switch 조건문 키워드로 구글링해보세요.
답변을 작성하시기 전에 로그인 해주세요.