모바일 생성

This commit is contained in:
gnuboard
2013-02-27 10:25:20 +09:00
parent 408e2e9e4a
commit 0ebdcb206f
135 changed files with 3913 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 B

View File

@ -0,0 +1,22 @@
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
global $is_admin;
?>
<section id="visit">
<div>
<h2>방문자집계</h2>
<dl>
<dt>오늘</dt>
<dd><?=number_format($visit[1])?></dd>
<dt>어제</dt>
<dd><?=number_format($visit[2])?></dd>
<dt>최대</dt>
<dd><?=number_format($visit[3])?></dd>
<dt>전체</dt>
<dd><?=number_format($visit[4])?></dd>
</dl>
<? if ($is_admin == "super") { ?><a href="<?=G4_ADMIN_URL?>/visit_list.php">상세보기</a><?}?>
</div>
</section>