git-svn-id: http://xe-core.googlecode.com/svn/trunk@818 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-30 07:07:59 +00:00
parent 8a4280e93a
commit cfae38adb5
13 changed files with 25 additions and 18 deletions

View file

@ -17,7 +17,7 @@
/**
* @brief 플러그인 목록을 보여줌
**/
function dispDownloadedPluginList() {
function dispPluginAdminDownloadedList() {
// 플러그인 목록을 세팅
$oPluginModel = &getModel('plugin');
$plugin_list = $oPluginModel->getDownloadedPluginList();
@ -45,7 +45,7 @@
/**
* @brief 플러그인의 코드 생성기
**/
function dispGenerateCode() {
function dispPluginGenerateCode() {
// 선택된 플러그인 정보를 구함
$oPluginModel = &getModel('plugin');
$plugin_info = $oPluginModel->getPluginInfo(Context::get('selected_plugin'));
@ -70,7 +70,7 @@
/**
* @brief 페이지 관리에서 사용될 코드 생성 팝업
**/
function dispGenerateCodeInPage() {
function dispPluginGenerateCodeInPage() {
$this->dispGenerateCode();
$this->setTemplateFile('plugin_generate_code_in_page');
}