mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-15 01:09:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1662 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
15801d738a
commit
8390ec57e2
75 changed files with 484 additions and 484 deletions
|
|
@ -1,11 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* @class plugin
|
||||
* @class widget
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief plugin 모듈의 high class
|
||||
* @brief widget 모듈의 high class
|
||||
**/
|
||||
|
||||
class plugin extends ModuleObject {
|
||||
class widget extends ModuleObject {
|
||||
|
||||
/**
|
||||
* @brief 설치시 추가 작업이 필요할시 구현
|
||||
|
|
@ -13,13 +13,13 @@
|
|||
function moduleInstall() {
|
||||
// action forward에 등록 (관리자 모드에서 사용하기 위함)
|
||||
$oModuleController = &getController('module');
|
||||
$oModuleController->insertActionForward('plugin', 'view', 'dispPluginInfo');
|
||||
$oModuleController->insertActionForward('plugin', 'view', 'dispPluginGenerateCode');
|
||||
$oModuleController->insertActionForward('plugin', 'view', 'dispPluginGenerateCodePage');
|
||||
$oModuleController->insertActionForward('plugin', 'view', 'dispPluginAdminDownloadedList');
|
||||
$oModuleController->insertActionForward('widget', 'view', 'dispWidgetInfo');
|
||||
$oModuleController->insertActionForward('widget', 'view', 'dispWidgetGenerateCode');
|
||||
$oModuleController->insertActionForward('widget', 'view', 'dispWidgetGenerateCodePage');
|
||||
$oModuleController->insertActionForward('widget', 'view', 'dispWidgetAdminDownloadedList');
|
||||
|
||||
// plugin 에서 사용할 cache디렉토리 생성
|
||||
FileHandler::makeDir('./files/cache/plugin');
|
||||
// widget 에서 사용할 cache디렉토리 생성
|
||||
FileHandler::makeDir('./files/cache/widget');
|
||||
|
||||
return new Object();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue