rhymix/modules/session/session.admin.view.php
2010-09-06 06:35:20 +00:00

26 lines
576 B
PHP

<?php
/**
* @class sessionAdminView
* @author NHN (developers@xpressengine.com)
* @brief session모듈의 admin view class
**/
class sessionAdminView extends session {
/**
* @brief 초기화
**/
function init() {
}
/**
* @brief 설정
**/
function dispSessionAdminIndex() {
// 템플릿 파일 지정
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('index');
}
}
?>