english comments added

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0_english@8278 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
mosmartin 2011-04-06 16:48:06 +00:00
parent 693e215bc1
commit 4d272994dd
219 changed files with 6407 additions and 8705 deletions

View file

@ -2,32 +2,30 @@
/**
* @class editorView
* @author NHN (developers@xpressengine.com)
* @brief editor 모듈의 view 클래스
* @brief view class of the editor module
**/
class editorView extends editor {
/**
* @brief 초기화
* @brief Initialization
**/
function init() {
}
/**
* @brief 컴포넌트의 팝업 출력을 요청을 받는 action
* @brief Action to get a request to display compoenet pop-up
**/
function dispEditorPopup() {
// css 파일 추가
// add a css file
Context::addCssFile($this->module_path."tpl/css/editor.css");
// 변수 정리
// List variables
$editor_sequence = Context::get('editor_sequence');
$component = Context::get('component');
$site_module_info = Context::get('site_module_info');
$site_srl = (int)$site_module_info->site_srl;
// component 객체를 받음
// Get compoenet object
$oEditorModel = &getModel('editor');
$oComponent = &$oEditorModel->getComponentObject($component, $editor_sequence, $site_srl);
if(!$oComponent->toBool()) {
@ -35,22 +33,19 @@
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('component_not_founded');
} else {
// 컴포넌트의 popup url을 출력하는 method실행후 결과를 받음
// Get the result after executing a method to display popup url of the component
$popup_content = $oComponent->getPopupContent();
Context::set('popup_content', $popup_content);
// 레이아웃을 popup_layout으로 설정
// Set layout to popup_layout
$this->setLayoutFile('popup_layout');
// 템플릿 지정
// Set a template
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('popup');
}
}
/**
* @brief 컴퍼넌트 정보 보기
* @brief Get component information
**/
function dispEditorComponentInfo() {
$component_name = Context::get('component_name');
@ -68,28 +63,26 @@
}
/**
* @brief 모듈의 추가 설정에서 에디터 설정을 하는 form 추가
* @brief Add a form for editor addition setup
**/
function triggerDispEditorAdditionSetup(&$obj) {
$current_module_srl = Context::get('module_srl');
$current_module_srls = Context::get('module_srls');
if(!$current_module_srl && !$current_module_srls) {
// 선택된 모듈의 정보를 가져옴
// Get information of the current module
$current_module_info = Context::get('current_module_info');
$current_module_srl = $current_module_info->module_srl;
if(!$current_module_srl) return new Object();
}
// 에디터 설정을 구함
// Get editors settings
$oEditorModel = &getModel('editor');
$editor_config = $oEditorModel->getEditorConfig($current_module_srl);
Context::set('editor_config', $editor_config);
$oModuleModel = &getModel('module');
// 에디터 스킨 목록을 구함
// Get a list of editor skin
$editor_skin_list = FileHandler::readDir(_XE_PATH_.'modules/editor/skins');
Context::set('editor_skin_list', $editor_skin_list);
@ -105,15 +98,12 @@
$content_style_list[$style]->title = $info->title;
}
Context::set('content_style_list', $content_style_list);
// 그룹 목록을 구함
// Get a group list
$oMemberModel = &getModel('member');
$site_module_info = Context::get('site_module_info');
$group_list = $oMemberModel->getGroups($site_module_info->site_srl);
Context::set('group_list', $group_list);
// 템플릿 파일 지정
// Set a template file
$oTemplate = &TemplateHandler::getInstance();
$tpl = $oTemplate->compile($this->module_path.'tpl', 'editor_module_config');
$obj .= $tpl;