git-svn-id: http://xe-core.googlecode.com/svn/trunk@80 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-15 09:59:59 +00:00
parent d753280e12
commit bbfa91a7cd
5 changed files with 104 additions and 85 deletions

View file

@ -0,0 +1,30 @@
<?php
/**
* @class adminModel
* @author zero (zero@nzeo.com)
* @brief admin 모듈의 model class
**/
class adminModel extends Module {
/**
* @brief 초기화
**/
function init() {
}
/**
* @brief 레이아웃 경로를 return
**/
function getLayoutPath() {
return $this->template_path;
}
/**
* @brief 레이아웃 파일을 return
**/
function getLayoutTpl() {
return "layout.html";
}
}
?>