mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1180 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
6268b48e0b
commit
e3be6964f7
8 changed files with 78 additions and 8 deletions
|
|
@ -268,5 +268,23 @@
|
|||
$args->module_category_srl = Context::get('module_category_srl');
|
||||
return executeQuery('module.deleteModuleCategory', $args);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 지정된 menu_srl에 속한 mid 의 menu_srl 을 변경
|
||||
**/
|
||||
function updateModuleMenu($mid, $menu_srl) {
|
||||
$args->mid = $mid;
|
||||
$args->menu_srl = $menu_srl;
|
||||
return executeQuery('module.updateModuleMenu', $args);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 지정된 menu_srl에 속한 mid 의 layout_srl을 변경
|
||||
**/
|
||||
function updateModuleLayout($layout_srl, $menu_srls) {
|
||||
$args->layout_srl = $layout_srl;
|
||||
$args->menu_srls = $menu_srls;
|
||||
return executeQuery('module.updateModuleLayout', $args);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue