rhymix/modules/editor/editor.view.php

26 lines
523 B
PHP

<?php
/**
* @class editorView
* @author zero (zero@nzeo.com)
* @brief editor 모듈의 view 클래스
**/
class editorView extends editor {
/**
* @brief 초기화
**/
function init() {
// template path 지정
$this->setTemplatePath($this->module_path.'tpl');
}
/**
* @brief 에디터 출력
**/
function dispEditor() {
$this->setTemplateFile('editor.html');
}
}
?>