first
This commit is contained in:
172
modules/member/themes/_desktop/bs4-default/manager/scrap.php
Normal file
172
modules/member/themes/_desktop/bs4-default/manager/scrap.php
Normal file
@@ -0,0 +1,172 @@
|
||||
<?php
|
||||
|
||||
include_once $g['dir_module_skin'].'_menu.php';
|
||||
|
||||
|
||||
|
||||
$sort = $sort ? $sort : 'uid';
|
||||
|
||||
$orderby= $orderby ? $orderby : 'desc';
|
||||
|
||||
$recnum = $recnum && $recnum < 200 ? $recnum : 15;
|
||||
|
||||
|
||||
|
||||
$sqlque = 'mbruid='.$M['memberuid'];
|
||||
|
||||
if ($category) $sqlque .= " and category='".$category."'";
|
||||
|
||||
if ($where && $keyword)
|
||||
|
||||
{
|
||||
|
||||
$sqlque .= getSearchSql($where,$keyword,$ikeyword,'or');
|
||||
|
||||
}
|
||||
|
||||
$RCD = getDbArray($table['s_scrap'],$sqlque,'*',$sort,$orderby,$recnum,$p);
|
||||
|
||||
$NUM = getDbRows($table['s_scrap'],$sqlque);
|
||||
|
||||
$TPG = getTotalPage($NUM,$recnum);
|
||||
|
||||
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="scraplist">
|
||||
|
||||
|
||||
|
||||
<div class="info">
|
||||
|
||||
|
||||
|
||||
<div class="article">
|
||||
|
||||
<?php echo number_format($NUM)?>개(<?php echo $p?>/<?php echo $TPG?>페이지)
|
||||
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
|
||||
|
||||
|
||||
<select onchange="goHref('<?php echo str_replace('&','&',$g['url_page'])?>&category='+this.value);">
|
||||
|
||||
<option value=""> + 전체</option>
|
||||
|
||||
<option value="">-------------</option>
|
||||
|
||||
<?php $_CATS = getDbSelect($table['s_scrap'],"mbruid=".$M['memberuid']." and category<>'' group by category",'category')?>
|
||||
|
||||
<?php while($_R=db_fetch_array($_CATS)):?>
|
||||
|
||||
<option value="<?php echo $_R['category']?>"<?php if($_R['category']==$category):?> selected="selected"<?php endif?>>ㆍ<?php echo $_R['category']?></option>
|
||||
|
||||
<?php endwhile?>
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<form name="procForm" action="<?php echo $g['s']?>/" method="post" target="_action_frame_<?php echo $m?>" onsubmit="return submitCheck(this);">
|
||||
|
||||
<input type="hidden" name="r" value="<?php echo $r?>" />
|
||||
|
||||
<input type="hidden" name="m" value="<?php echo $m?>" />
|
||||
|
||||
<input type="hidden" name="front" value="<?php echo $front?>" />
|
||||
|
||||
<input type="hidden" name="a" value="" />
|
||||
|
||||
|
||||
|
||||
<table summary="스크랩 리스트입니다.">
|
||||
|
||||
<caption>스크랩</caption>
|
||||
|
||||
<colgroup>
|
||||
|
||||
<col width="30">
|
||||
|
||||
<col width="50">
|
||||
|
||||
<col width="100">
|
||||
|
||||
<col>
|
||||
|
||||
<col width="90">
|
||||
|
||||
</colgroup>
|
||||
|
||||
<thead>
|
||||
|
||||
<tr>
|
||||
|
||||
<th scope="col" class="side1"><img src="<?php echo $g['img_core']?>/_public/ico_check_01.gif" class="hand" alt="" onclick="chkFlag('members[]');" /></th>
|
||||
|
||||
<th scope="col">번호</th>
|
||||
|
||||
<th scope="col">분류</th>
|
||||
|
||||
<th scope="col">제목</th>
|
||||
|
||||
<th scope="col" class="side2">날짜</th>
|
||||
|
||||
</tr>
|
||||
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
|
||||
|
||||
|
||||
<?php while($R=db_fetch_array($RCD)):?>
|
||||
|
||||
<tr>
|
||||
|
||||
<td><input type="checkbox" name="members[]" value="<?php echo $R['uid']?>" /></td>
|
||||
|
||||
<td><?php echo $NUM-((($p-1)*$recnum)+$_rec++)?></td>
|
||||
|
||||
<td class="cat"><?php echo $R['category']?></td>
|
||||
|
||||
<td class="sbj">
|
||||
|
||||
<a href="<?php echo $R['url']?>" target="_blank"><?php echo $R['subject']?></a>
|
||||
|
||||
<?php if(getNew($R['d_regis'],24)):?><span class="new">new</span><?php endif?>
|
||||
|
||||
</td>
|
||||
|
||||
<td><?php echo getDateFormat($R['d_regis'],'Y.m.d H:i')?></td>
|
||||
|
||||
</tr>
|
||||
|
||||
<?php endwhile?>
|
||||
|
||||
|
||||
|
||||
<?php if(!$NUM):?>
|
||||
|
||||
<tr>
|
||||
|
||||
<td><input type="checkbox" disabled="disabled" /></td>
|
||||
|
||||
<td>1</td>
|
||||
|
||||
Reference in New Issue
Block a user