mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-13 16:34:52 +09:00
23 lines
396 B
PHP
23 lines
396 B
PHP
<?php
|
|
/**
|
|
* @class pagemakerView
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief pagemaker 모듈의 view 클래스
|
|
**/
|
|
|
|
class pagemakerView extends pagemaker {
|
|
|
|
/**
|
|
* @brief 초기화
|
|
**/
|
|
function init() {
|
|
}
|
|
|
|
/**
|
|
* @brief 목록 출력 (관리자용)
|
|
**/
|
|
function dispList() {
|
|
}
|
|
|
|
}
|
|
?>
|