mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 11:19:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1230 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c58b1925f0
commit
86b2b76c86
10 changed files with 53 additions and 45 deletions
|
|
@ -31,6 +31,21 @@
|
|||
$oModuleController->insertActionForward('board', 'view', 'dispBoardAdminGrantInfo');
|
||||
$oModuleController->insertActionForward('board', 'controller', 'procBoardAdminUpdateSkinInfo');
|
||||
|
||||
// 기본 게시판 생성
|
||||
// 설치된 기본 모듈이 있는지 확인
|
||||
$output = executeQuery('module.getDefaultMidInfo');
|
||||
if($output->data) return new Object();
|
||||
|
||||
// 기본 데이터 세팅
|
||||
$args->board_name = 'board';
|
||||
$args->browser_title = 'test module';
|
||||
$args->is_default = 'Y';
|
||||
$args->skin = 'default';
|
||||
|
||||
// 게시판 controller 생성
|
||||
$oBoardController = &getController('board');
|
||||
$oBoardController->procBoardAdminInsertBoard($args);
|
||||
|
||||
return new Object();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue