mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
30 lines
578 B
PHP
30 lines
578 B
PHP
<?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";
|
|
}
|
|
}
|
|
?>
|