issuetracker * 댓글에 에디터 붙임

* 첨부파일 목록 표시 미구현
  * 첨부파일 활성화 트리거 추가
  * 첨부파일 수 기록 필드 추가

file * 첨부파일 목록에서 업로드 타겟을 알 수 없을 경우
       무조건 '대기'로 타이틀을 표시하는 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6512 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2009-06-11 01:32:17 +00:00
parent 0fbf4934eb
commit d0ed1a982d
7 changed files with 81 additions and 21 deletions

View file

@ -150,5 +150,17 @@
if($grant->commiter) return true;
else return parent::isAccessible() || $this->isGranted();
}
/**
* @brief 댓글 에디터 html을 구해서 return
**/
function getCommentEditor() {
if(!$this->isEnableComment()) return;
$oEditorModel = &getModel('editor');
return $oEditorModel->getModuleEditor('comment', $this->get('module_srl'), null, 'history_srl', 'content');
}
}
?>