28 lines
881 B
PHP
28 lines
881 B
PHP
<?php
|
|
include_once "{$_SERVER['DOCUMENT_ROOT']}/common.inc.php";
|
|
|
|
$menu_hist = array();
|
|
if( $GLOBALS['_Auth_']['menuObj'] ){
|
|
$menu_hist = $GLOBALS['_Auth_']['menuObj']->getMenuBrdcom($GLOBALS['_Auth_']['cate_id']);
|
|
}
|
|
|
|
if( $menu_hist ){
|
|
$GLOBALS['_Menu_'] = array(
|
|
"menu_code" => $menu_hist['cate_code'][count($menu_hist['cate_id'])-1],
|
|
"menu_name" => $menu_hist['cate_name'][count($menu_hist['cate_id'])-1],
|
|
"menu_class" => $menu_hist['cate_class'][count($menu_hist['cate_id'])-1],
|
|
"menu_exp" => $menu_hist['cate_exp'][count($menu_hist['cate_id'])-1],
|
|
);
|
|
}
|
|
?>
|
|
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="Member Login">
|
|
<title>쿨스</title>
|
|
|
|
<?php include _SVC_INC_PATH_ ."/header_common.php"?>
|
|
</head>
|
|
<body>
|