Пример #1
0
			</div>
			<div class="col-lg-12">
				<h3>이번 주 만료 예정자</h3>
				<div class="content-panel">
					<table class="table table-striped">
						<thead>
							<tr>
								<th>이름</th>
								<th>등록일</th>
								<th>마감일</th>
								<th>전화</th>
							</tr>
						</thead>
						<tbody>
						<?php 
    $endedMembers = AdminInformation::endedMembers();
    foreach ($endedMembers as $endedMember) {
        ?>
							<tr>
								<td><a href="/admin/member/profile.php?type=gym&amp;barcode=<?php 
        echo $endedMember['barcode'];
        ?>
">
									<?php 
        echo $endedMember['name'];
        ?>
</a>
								</td>
								<td><?php 
        echo $endedMember['registerDate'];
        ?>
Пример #2
0
<?php

require_once __DIR__ . '/../../framework/framework.php';
$msg = array('status' => 'ok');
$msg['monthlyJoinedMember'] = AdminInformation::monthlyJoinedMemberCount();
$msg['dailyAttendMemberCount'] = AdminInformation::dailyAttendMemberCount();
$msg['attendTimeStatistics'] = AdminInformation::attendTimeStatistics();
$msg['monthlyGymMemberCount'] = AdminInformation::monthlyGymMemberCount();
header('Content-Type: application/json');
print json_encode($msg);