mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-12 15:02:15 +09:00
삭제
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
commit
8326004cb2
2773 changed files with 91485 additions and 0 deletions
45
modules/admin/admin.class.php
Normal file
45
modules/admin/admin.class.php
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
/**
|
||||
* @class admin
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief admin 모듈의 high class
|
||||
**/
|
||||
|
||||
class admin extends ModuleObject {
|
||||
|
||||
/**
|
||||
* @brief 설치시 추가 작업이 필요할시 구현
|
||||
**/
|
||||
function moduleInstall() {
|
||||
// 게시판, 회원관리, 레이아웃관리등 자주 사용될 module을 admin_shortcut에 등록
|
||||
$oAdminController = &getAdminController('admin');
|
||||
|
||||
$oAdminController->insertShortCut('blog');
|
||||
$oAdminController->insertShortCut('board');
|
||||
$oAdminController->insertShortCut('page');
|
||||
$oAdminController->insertShortCut('menu');
|
||||
$oAdminController->insertShortCut('layout');
|
||||
$oAdminController->insertShortCut('addon');
|
||||
$oAdminController->insertShortCut('widget');
|
||||
$oAdminController->insertShortCut('member');
|
||||
$oAdminController->insertShortCut('module');
|
||||
|
||||
return new Object();
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 설치가 이상이 없는지 체크하는 method
|
||||
**/
|
||||
function checkUpdate() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 업데이트 실행
|
||||
**/
|
||||
function moduleUpdate() {
|
||||
return new Object();
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue