AvocadoAmber/AvocadoEdition_Light/skin/member/basic/profile.skin.php

54 lines
1.6 KiB
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-23 11:45:33 +09:00
if (!defined('_GNUBOARD_'))
exit; // 개별 페이지 접근 불가
2022-09-17 20:50:50 +09:00
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
2024-09-23 11:45:33 +09:00
add_stylesheet('<link rel="stylesheet" href="' . $member_skin_url . '/style.css">', 0);
2022-09-17 20:50:50 +09:00
?>
<!-- 자기소개 시작 { -->
<div id="profile" class="new_win mbskin">
2024-09-23 11:45:33 +09:00
<h1 id="win_title"><?php echo $mb_nick ?>님의 프로필</h1>
2022-09-17 20:50:50 +09:00
2024-09-23 11:45:33 +09:00
<div class="tbl_head01 tbl_wrap">
<table>
<tbody>
2022-09-17 20:50:50 +09:00
<tr>
2024-09-23 11:45:33 +09:00
<th scope="row">회원권한</th>
<td><?php echo $mb['mb_level'] ?></td>
2022-09-17 20:50:50 +09:00
</tr>
<tr>
2024-09-23 11:45:33 +09:00
<th scope="row">포인트</th>
<td><?php echo number_format($mb['mb_point']) ?></td>
2022-09-17 20:50:50 +09:00
</tr>
2024-09-23 11:45:33 +09:00
<?php if ($mb_homepage) { ?>
<tr>
2022-09-17 20:50:50 +09:00
<th scope="row">홈페이지</th>
<td><a href="<?php echo $mb_homepage ?>" target="_blank"><?php echo $mb_homepage ?></a></td>
2024-09-23 11:45:33 +09:00
</tr>
<?php } ?>
2022-09-17 20:50:50 +09:00
<tr>
2024-09-23 11:45:33 +09:00
<th scope="row">회원가입일</th>
<td>
<?php echo ($member['mb_level'] >= $mb['mb_level']) ? substr($mb['mb_datetime'], 0, 10) . " (" . number_format($mb_reg_after) . " 일)" : "알 수 없음"; ?>
</td>
2022-09-17 20:50:50 +09:00
</tr>
<tr>
2024-09-23 11:45:33 +09:00
<th scope="row">최종접속일</th>
<td><?php echo ($member['mb_level'] >= $mb['mb_level']) ? $mb['mb_today_login'] : "알 수 없음"; ?></td>
2022-09-17 20:50:50 +09:00
</tr>
2024-09-23 11:45:33 +09:00
</tbody>
</table>
</div>
2022-09-17 20:50:50 +09:00
2024-09-23 11:45:33 +09:00
<section>
<h2>인사말</h2>
<p><?php echo $mb_profile ?></p>
</section>
2022-09-17 20:50:50 +09:00
2024-09-23 11:45:33 +09:00
<div class="win_btn">
<button type="button" onclick="window.close();">창닫기</button>
</div>
2022-09-17 20:50:50 +09:00
</div>
2024-09-23 11:45:33 +09:00
<!-- } 자기소개 -->