mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
21 lines
440 B
PHP
21 lines
440 B
PHP
<?php
|
|
|
|
/**
|
|
* @class newest_document
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief 최근 게시물을 출력하는 플러그인
|
|
* @version 0.1
|
|
**/
|
|
|
|
class newest_document extends PluginHandler {
|
|
|
|
/**
|
|
* @brief 플러그인의 실행 부분
|
|
* ./plugins/플러그인/conf/info.xml에 선언한 extra_vars를 args로 받는다
|
|
**/
|
|
function proc($args) {
|
|
}
|
|
|
|
|
|
}
|
|
?>
|