mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
페이지 모듈의 컨텐츠 꾸미는 부분을 위지윅으로 변경
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2957 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2b1d64f477
commit
7de5dc3a0b
30 changed files with 974 additions and 229 deletions
|
|
@ -19,6 +19,7 @@
|
|||
$oModuleController->insertActionForward('page', 'view', 'dispPageAdminInfo');
|
||||
$oModuleController->insertActionForward('page', 'view', 'dispPageAdminInsert');
|
||||
$oModuleController->insertActionForward('page', 'view', 'dispPageAdminDelete');
|
||||
$oModuleController->insertActionForward('page', 'view', 'dispPageAdminContentModify');
|
||||
|
||||
// page 에서 사용할 cache디렉토리 생성
|
||||
FileHandler::makeDir('./files/cache/page');
|
||||
|
|
@ -30,6 +31,8 @@
|
|||
* @brief 설치가 이상이 없는지 체크하는 method
|
||||
**/
|
||||
function checkUpdate() {
|
||||
$oModuleModel = &getModel('module');
|
||||
if(!$oModuleModel->getActionForward('dispPageAdminContentModify')) return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -37,7 +40,13 @@
|
|||
* @brief 업데이트 실행
|
||||
**/
|
||||
function moduleUpdate() {
|
||||
return new Object();
|
||||
$oModuleModel = &getModel('module');
|
||||
$oModuleController = &getController('module');
|
||||
|
||||
if(!$oModuleModel->getActionForward('dispPageAdminContentModify'))
|
||||
$oModuleController->insertActionForward('page', 'view', 'dispPageAdminContentModify');
|
||||
|
||||
return new Object(0,'success_updated');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue