rhymix/modules/krzip/krzip.admin.view.php
flyskyko a0d57a320f merge with 1.4.5 branch(1.4.5.10)
git-svn-id: http://xe-core.googlecode.com/svn/trunk@9269 201d5d3c-b55e-5fd7-737f-ddc643e51545
2011-09-22 05:29:04 +00:00

36 lines
896 B
PHP

<?php
/**
* @class krzipAdminView
* @author NHN (developers@xpressengine.com)
* @brief krzip 모듈의 admin view class
**/
class krzipAdminView extends krzip {
/**
* @brief 초기화
**/
function init() {
}
/**
* @brief 설정
**/
function dispKrzipAdminConfig() {
// 설정 정보를 받아옴 (module model 객체를 이용)
$oModuleModel = &getModel('module');
$config = $oModuleModel->getModuleConfig('krzip');
Context::set('config',$config);
//Security
$security = new Security();
$security->encodeHTML('config..');
// 템플릿 파일 지정
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('index');
}
}
?>