mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@65 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
de0318dda0
commit
d5406ca661
1 changed files with 21 additions and 0 deletions
|
|
@ -26,6 +26,27 @@
|
|||
return ModuleHandler::getModuleInstance($module_name, $act_type);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief module의 controller 객체 생성용
|
||||
**/
|
||||
function getController($module_name) {
|
||||
return getModule($module_name, 'controller');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief module의 view 객체 생성용
|
||||
**/
|
||||
function getView($module_name) {
|
||||
return getModule($module_name, 'view');
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief module의 model 객체 생성용
|
||||
**/
|
||||
function getModel($module_name) {
|
||||
return getModule($module_name, 'model');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief Context::getUrl($args_list)를 쓰기 쉽게 함수로 선언
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue