페이지 모듈에서도 추가설정을 통해 내용직접입력 위젯의 에디터 및 기본글꼴, 서식을 지정할 수 있도록 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6266 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-05-04 06:33:11 +00:00
parent e9cabd4148
commit 6dacbb1793
3 changed files with 18 additions and 0 deletions

View file

@ -96,6 +96,22 @@
$this->setTemplateFile('page_info');
}
/**
* @brief 페이지 추가 설정 보여줌
* 추가설정은 서비스형 모듈들에서 다른 모듈과의 연계를 위해서 설정하는 페이지임
**/
function dispPageAdminPageAdditionSetup() {
// content는 다른 모듈에서 call by reference로 받아오기에 미리 변수 선언만 해 놓음
$content = '';
$oEditorView = &getView('editor');
$oEditorView->triggerDispEditorAdditionSetup($content);
Context::set('setup_content', $content);
// 템플릿 파일 지정
$this->setTemplateFile('addition_setup');
}
/**
* @brief 페이지 추가 출력
**/