Files
cm-app-web/views/admin/basic/board/editorimage/index.php

98 lines
4.6 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" >&times;</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" class="active"><a href="<?php echo admin_url($this->pagedir); ?>">에디터이미지</a></li>
<li role="presentation"><a href="<?php echo admin_url($this->pagedir . '/graph'); ?>">기간별 그래프</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-delete btn-list-selected disabled" data-list-delete-url = "<?php echo element('list_delete_url', $view); ?>" >선택삭제</button>
</div>
<?php
$buttons = ob_get_contents();
ob_end_flush();
?>
</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('eim_id', element('sort', $view)); ?>">번호</a></th>
<th>파일</th>
<th>이미지</th>
<th><a href="<?php echo element('eim_filesize', element('sort', $view)); ?>">파일크기</a></th>
<th><a href="<?php echo element('eim_datetime', element('sort', $view)); ?>">업로드일시</a></th>
<th>업로드 IP</th>
<th>업로더</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('download_link', $result); ?>"><?php echo html_escape(element('eim_originname', $result)); ?></a></td>
<td>
<?php if (element('thumb_url', $result)) {?>
<img src="<?php echo element('thumb_url', $result); ?>" alt="<?php echo html_escape(element('eim_originname', $result)); ?>" title="<?php echo html_escape(element('eim_originname', $result)); ?>" class="thumbnail mg0 view_full_image" style="width:80px;cursor:pointer;" data-origin-image-url="<?php echo element('origin_image_url', $result); ?>"/>
<?php } ?>
</td>
<td><?php echo byte_format(element('eim_filesize', $result),2); ?></td>
<td><?php echo display_datetime(element('eim_datetime', $result), 'full'); ?></td>
<td><a href="?sfield=eim_ip&amp;skeyword=<?php echo display_admin_ip(element('eim_ip', $result)); ?>"><?php echo display_admin_ip(element('eim_ip', $result)); ?></a></td>
<td><?php echo element('display_name', $result); ?> <?php if (element('mem_userid', $result)) { ?> ( <a href="?sfield=editor_image.mem_id&amp;skeyword=<?php echo element('mem_id', $result); ?>"><?php echo html_escape(element('mem_userid', $result)); ?></a> ) <?php } ?></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="8" 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>