Files
firstgarden-web-gnu/manager/index.php

21 lines
988 B
PHP

<?php
include_once '_common.php'; // 그누보드 설정 파일 불러오기
include_once 'head.php';
// 로그인 체크
if( isset($_SESSION['user_id']) ) { // 로그인 했다면
// 로그인 한 계정에 따라 자동으로 페이지 넘기기
if ( $_SESSION['user_id'] == "ticket" ) { // 매표소는 입장처리로 넘김
goto_url(FG_MANAGER_URL.'/vip/vip_list_ent.php');
} else if ( $_SESSION['user_team'] == "베이커리" || $_SESSION['user_team'] == "경영지원" ) { // 베이커리와 퍼스트가든 계정은 베이커리로 넘김
goto_url(FG_MANAGER_URL.'/bakery/bakery_stock.php');
} else if ( $_SESSION['user_team'] == "예약판촉" ) { // 베이커리와 퍼스트가든 계정은 베이커리로 넘김
goto_url(FG_MANAGER_URL.'/vip/vip_list.php');
} else {
goto_url(FG_MANAGER_URL.'/adm/dashboard.php');
}
} else { // 로그인 안했으면
include_once 'login.php'; // 로그인 폼 불러오기
} // 로그인 체크 끝
include_once 'tail.php';