mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
29 lines
771 B
PHP
29 lines
771 B
PHP
<?php
|
|
/**
|
|
* @class pluginAdminView
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief plugin 모듈의 admin view class
|
|
**/
|
|
|
|
class pluginAdminView extends plugin {
|
|
|
|
/**
|
|
* @brief 초기화
|
|
**/
|
|
function init() {
|
|
$this->setTemplatePath($this->module_path.'tpl');
|
|
}
|
|
|
|
/**
|
|
* @brief 플러그인 목록을 보여줌
|
|
**/
|
|
function dispPluginAdminDownloadedList() {
|
|
// 플러그인 목록을 세팅
|
|
$oPluginModel = &getModel('plugin');
|
|
$plugin_list = $oPluginModel->getDownloadedPluginList();
|
|
Context::set('plugin_list', $plugin_list);
|
|
|
|
$this->setTemplateFile('downloaded_plugin_list');
|
|
}
|
|
}
|
|
?>
|