git-svn-id: http://xe-core.googlecode.com/svn/trunk@291 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-06 10:26:58 +00:00
parent 3eefc07577
commit 5b99985858
10 changed files with 110 additions and 8 deletions

View file

@ -126,5 +126,18 @@
return $layout_info;
}
/**
* @brief 메뉴 구성을 하기 위해 메뉴 srl을 return
**/
function getLayoutMenuSrl() {
$menu_id = Context::get('menu_id');
$oDB = &DB::getInstance();
$menu_srl = $oDB->getNextSequence();
$this->add('menu_id', $menu_id);
$this->add('menu_srl', $menu_srl);
}
}
?>