mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 08:49:56 +09:00
25 lines
503 B
PHP
25 lines
503 B
PHP
<?php
|
|
/**
|
|
* @class counterView
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief counter 모듈의 View class
|
|
**/
|
|
|
|
class counterView extends counter {
|
|
|
|
/**
|
|
* @brief 초기화
|
|
**/
|
|
function init() {
|
|
// 템플릿 경로 지정
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
}
|
|
|
|
/**
|
|
* @brief 관리자 페이지 초기화면
|
|
**/
|
|
function dispCounterAdminIndex() {
|
|
}
|
|
|
|
}
|
|
?>
|