104 lines
5.0 KiB
PHP
104 lines
5.0 KiB
PHP
<div class="box">
|
|
<div class="box-table">
|
|
<?php
|
|
echo show_alert_message($this->session->flashdata('message'), '<div class="alert alert-auto-close alert-dismissible alert-info"><button type="button" class="close alertclose" >×</button>', '</div>');
|
|
$attributes = array('class' => 'form-inline', 'name' => 'flist', 'id' => 'flist');
|
|
echo form_open(current_full_url(), $attributes);
|
|
?>
|
|
<div class="box-table-header">
|
|
<ul class="nav nav-pills">
|
|
<li role="presentation"><a href="<?php echo admin_url('board/trash'); ?>">원글 </a></li>
|
|
<li role="presentation" class="active"><a href="<?php echo admin_url('board/trash_comment'); ?>">댓글 </a></li>
|
|
</ul>
|
|
<?php
|
|
ob_start();
|
|
?>
|
|
<div class="btn-group pull-right" role="group" aria-label="...">
|
|
<a href="<?php echo element('listall_url', $view); ?>" class="btn btn-outline btn-default btn-sm">전체목록</a>
|
|
<button type="button" class="btn btn-outline btn-default btn-sm btn-list-truncate" data-list-truncate-url = "<?php echo element('list_truncate_url', $view); ?>" >휴지통비우기</button>
|
|
<button type="button" class="btn btn-outline btn-default btn-sm btn-list-delete btn-list-selected disabled" data-list-delete-url = "<?php echo element('list_delete_url', $view); ?>" >선택삭제</button>
|
|
<button type="button" class="btn btn-outline btn-default btn-sm btn-list-recover btn-list-selected disabled" data-list-recover-url = "<?php echo element('list_recover_url', $view); ?>" >복원하기</button>
|
|
</div>
|
|
<?php
|
|
$buttons = ob_get_contents();
|
|
ob_end_flush();
|
|
?>
|
|
<?php if (element('boardlist', $view)) { ?>
|
|
<div class="pull-right mr10">
|
|
<select name="brd_id" class="form-control" onChange="location.href='<?php echo current_url(); ?>?brd_id=' + this.value;">
|
|
<option value="">전체게시판</option>
|
|
<?php foreach (element('boardlist', $view) as $key => $value) { ?>
|
|
<option value="<?php echo element('brd_id', $value); ?>" <?php echo set_select('brd_id', element('brd_id', $value), ($this->input->get('brd_id') === element('brd_id', $value) ? true : false)); ?>><?php echo html_escape(element('brd_name', $value)); ?></option>
|
|
<?php } ?>
|
|
</select>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<div class="row">전체 : <?php echo element('total_rows', element('data', $view), 0); ?>건</div>
|
|
<div class="table-responsive">
|
|
<table class="table table-hover table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th><a href="<?php echo element('cmt_id', element('sort', $view)); ?>">번호</a></th>
|
|
<th>원글</th>
|
|
<th>댓글</th>
|
|
<th>삭제한사람</th>
|
|
<th>삭제날짜</th>
|
|
<th>IP 주소</th>
|
|
<th><input type="checkbox" name="chkall" id="chkall" /></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
if (element('list', element('data', $view))) {
|
|
foreach (element('list', element('data', $view)) as $result) {
|
|
?>
|
|
<tr>
|
|
<td><?php echo number_format(element('num', $result)); ?></td>
|
|
<td><a href="<?php echo element('posturl', $result); ?>" target="_blank"><?php echo html_escape(element('post_title', $result)); ?></td>
|
|
<td><a href="<?php echo admin_url($this->pagedir . '/view/' . element('cmt_id', $result)); ?>"><?php echo element('content', $result); ?></a></td>
|
|
<td><?php echo element('display_name', $result); ?></td>
|
|
<td><?php echo display_datetime(element('trash_datetime', element('meta', $result)), 'full'); ?></td>
|
|
<td><a href="?sfield=trash_ip&skeyword=<?php echo display_admin_ip(element('trash_ip', element('meta', $result))); ?>"><?php echo display_admin_ip(element('trash_ip', element('meta', $result))); ?></a></td>
|
|
<td><input type="checkbox" name="chk[]" class="list-chkbox" value="<?php echo element(element('primary_key', $view), $result); ?>" /></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}
|
|
if ( ! element('list', element('data', $view))) {
|
|
?>
|
|
<tr>
|
|
<td colspan="7" class="nopost">자료가 없습니다</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="box-info">
|
|
<?php echo element('paging', $view); ?>
|
|
<div class="pull-left ml20"><?php echo admin_listnum_selectbox();?></div>
|
|
<?php echo $buttons; ?>
|
|
</div>
|
|
<?php echo form_close(); ?>
|
|
</div>
|
|
<form name="fsearch" id="fsearch" action="<?php echo current_full_url(); ?>" method="get">
|
|
<div class="box-search">
|
|
<div class="row">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<select class="form-control" name="sfield" >
|
|
<?php echo element('search_option', $view); ?>
|
|
</select>
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" name="skeyword" value="<?php echo html_escape(element('skeyword', $view)); ?>" placeholder="Search for..." />
|
|
<span class="input-group-btn">
|
|
<button class="btn btn-default btn-sm" name="search_submit" type="submit">검색!</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|