mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
#18921228 : module 이름으로도 검색할 수 있게 변경. 단, module 이름을 넣지 않으면 act로만 검색함.(시험 필요.)
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7506 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
cdf900609a
commit
5e633ffe4a
1 changed files with 4 additions and 2 deletions
|
|
@ -264,9 +264,11 @@
|
|||
/**
|
||||
* @brief act 값에 의한 forward 값을 구함
|
||||
**/
|
||||
function getActionForward($act) {
|
||||
function getActionForward($act, $module = "") {
|
||||
$args->act = $act;
|
||||
$output = executeQuery('module.getActionForward',$args);
|
||||
$args->module = ($module)?$module:null;
|
||||
if (strlen ($args->module) > 0) $output = executeQuery ('module.getActionForwardWithModule', $args);
|
||||
else $output = executeQuery('module.getActionForward',$args);
|
||||
return $output->data;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue