Files
edu/skin/_include/Copy of _nav.php
T

152 lines
5.6 KiB
PHP

<?php
$navPath = basename(parse_url($_SERVER['REQUEST_URI'] ?? '', PHP_URL_PATH) ?: '');
parse_str(parse_url($_SERVER['REQUEST_URI'] ?? '', PHP_URL_QUERY) ?: '', $navQuery);
$navCate = $navQuery['cate'] ?? '';
/** depth01: 현재 스크립트가 해당 php와 같으면 부모 li active (서브메뉴 페이지 포함) */
function nav_active_depth01($phpFile) {
global $navPath;
return $navPath === $phpFile ? ' class="active"' : '';
}
/** depth02: 스크립트 + cate 쿼리까지 일치 */
function nav_active_depth02($phpFile, $cate) {
global $navPath, $navCate;
return ($navPath === $phpFile && $navCate === $cate) ? ' class="active"' : '';
}
?>
<div class="nav-group">
<ul class="depth01">
<li<?php echo nav_active_depth01('myclass.php'); echo nav_active_depth01('myclass_list.php');?>>
<a href="/edu/skin/myclass.php"> 마이클래스 </a>
<div class="state-box">
<span class="unit">0<small>%</small></span>
<span class="progress">
<span class="progress-bar" style="width: 0%"></span>
</span>
</div>
</li>
<li<?php echo nav_active_depth01('onboarding.php'); ?>>
<a href="/edu/skin/onboarding.php" data-nav="onboarding"> 온보딩 </a>
<div class="state-box">
<span class="unit" id="onboardingNavPercent" style="left: calc(0% - 3px);">0<small>%</small></span>
<span class="progress">
<span class="progress-bar" id="onboardingNavBar" style="width: 0%"></span>
</span>
</div>
</li>
<li<?php echo nav_active_depth01('learning.php'); ?>>
<a href="/edu/skin/learning.php"> 법정교육 </a>
<div class="state-box">
<span class="unit">0<small>%</small></span>
<span class="progress">
<span class="progress-bar" style="width: 0%"></span>
</span>
</div>
</li>
<li<?php echo nav_active_depth01('leadership.php'); ?>>
<a href="/edu/skin/leadership.php">리더십</a>
<ul class="depth02">
<li<?php echo nav_active_depth02('leadership.php', 'CA200L01'); ?>>
<a href="/edu/skin/leadership.php?cate=CA200L01" >
<span class="ico-box">
<img src="/edu/img/ico/ico_leadership_01.svg" />
</span>
리더십 시작하기
</a>
</li>
<li<?php echo nav_active_depth02('leadership.php', 'CA200L02'); ?>>
<a href="/edu/skin/leadership.php?cate=CA200L02" >
<span class="ico-box">
<img src="/edu/img/ico/ico_leadership_02.svg" />
</span>
셀프 리더십
</a>
</li>
<li<?php echo nav_active_depth02('leadership.php', 'CA200L03'); ?>>
<a href="/edu/skin/leadership.php?cate=CA200L03" >
<span class="ico-box">
<img src="/edu/img/ico/ico_leadership_03.svg" />
</span>
팀 리더십
</a>
</li>
<li<?php echo nav_active_depth02('leadership.php', 'CA200L04'); ?>>
<a href="/edu/skin/leadership.php?cate=CA200L04" >
<span class="ico-box">
<img src="/edu/img/ico/ico_leadership_04.svg" />
</span>
실전조직 리더십
</a>
</li>
<li<?php echo nav_active_depth02('leadership.php', 'CA200L05'); ?>>
<a href="/edu/skin/leadership.php?cate=CA200L05" >
<span class="ico-box">
<img src="/edu/img/ico/ico_leadership_05.svg" />
</span>
리더케이스탐구
</a>
</li>
</ul>
</li>
<li<?php echo nav_active_depth01('insight.php'); ?>>
<a href="/edu/skin/insight.php">인사이트 </a>
<!-- 2depth -->
<ul class="depth02">
<li<?php echo nav_active_depth02('insight.php', 'CA200I01'); ?>>
<a href="/edu/skin/insight.php?cate=CA200I01" >
<span class="ico-box">
<img src="/edu/img/ico/ico_insight_01.svg" />
</span>
경제와 사회
</a>
</li>
<li<?php echo nav_active_depth02('insight.php', 'CA200I02'); ?>>
<a href="/edu/skin/insight.php?cate=CA200I02" >
<span class="ico-box">
<img src="/edu/img/ico/ico_insight_02.svg" />
</span>
기술과 미래
</a>
</li>
<li<?php echo nav_active_depth02('insight.php', 'CA200I03'); ?>>
<a href="/edu/skin/insight.php?cate=CA200I03" >
<span class="ico-box">
<img src="/edu/img/ico/ico_insight_03.svg" />
</span>
스킬 업
</a>
</li>
<li<?php echo nav_active_depth02('insight.php', 'CA200I04'); ?>>
<a href="/edu/skin/insight.php?cate=CA200I04" >
<span class="ico-box">
<img src="/edu/img/ico/ico_insight_04.svg" />
</span>
행복과 건강
</a>
</li>
<li<?php echo nav_active_depth02('insight.php', 'CA200I05'); ?>>
<a href="/edu/skin/insight.php?cate=CA200I05" >
<span class="ico-box">
<img src="/edu/img/ico/ico_insight_05.svg" />
</span>
피플스토리
</a>
</li>
<li<?php echo nav_active_depth02('insight.php', 'CA200I06'); ?>>
<a href="/edu/skin/insight.php?cate=CA200I06" >
<span class="ico-box">
<img src="/edu/img/ico/ico_insight_06.svg" />
</span>
라이프
</a>
</li>
</ul>
</li>
<li<?php echo nav_active_depth01('biztrend.php'); ?>>
<a href="/edu/skin/biztrend.php">비즈트렌드</a>
</li>
</ul>
</div>