테마에서 마이페이지등을 지정할 수 있도록 수정

This commit is contained in:
chicpro
2015-09-22 15:43:52 +09:00
parent ced60631e4
commit a09aa36cd6
8 changed files with 88 additions and 34 deletions

View File

@ -2,6 +2,16 @@
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
if (!defined("_ORDERINQUIRY_")) exit; // 개별 페이지 접근 불가
// 테마에 orderinquiry.sub.php 있으면 include
if(defined('G5_THEME_SHOP_PATH')) {
$theme_inquiry_file = G5_THEME_SHOP_PATH.'/orderinquiry.sub.php';
if(is_file($theme_inquiry_file)) {
include_once($theme_inquiry_file);
return;
unset($theme_inquiry_file);
}
}
?>
<!-- 주문 내역 목록 시작 { -->