Initial import from local backup (Documents-Playground/pakerpale)
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
<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>'); ?>
|
||||
<div class="box-table-header">
|
||||
<ul class="nav nav-pills">
|
||||
<li role="presentation"><a href="<?php echo admin_url($this->pagedir); ?>">파일다운로드</a></li>
|
||||
<li role="presentation"><a href="<?php echo admin_url($this->pagedir . '/graph'); ?>">기간별 그래프</a></li>
|
||||
<li role="presentation" class="active"><a href="<?php echo admin_url($this->pagedir . '/cleanlog'); ?>">오래된 로그삭제</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php
|
||||
echo validation_errors('<div class="alert alert-warning" role="alert">', '</div>');
|
||||
echo show_alert_message(element('alert_message', $view), '<div class="alert alert-auto-close alert-dismissible alert-info"><button type="button" class="close alertclose" >×</button>', '</div>');
|
||||
?>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-bordered table-hover table-striped">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<?php
|
||||
$attributes = array('class' => 'form-horizontal', 'name' => 'fadminwrite', 'id' => 'fadminwrite');
|
||||
echo form_open(current_full_url(), $attributes);
|
||||
?>
|
||||
<input type="number" class="form-control" name="day" value="<?php echo set_value('day', 180); ?>" /> 일 이상된 파일다운로드로그를 모두 검색합니다.
|
||||
<button type="submit" class="btn btn-warning btn-sm">검색</button>
|
||||
<?php echo form_close(); ?>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="box-info">
|
||||
<?php
|
||||
if (element('msg', $view)) {
|
||||
$attributes = array('class' => 'form-horizontal', 'name' => 'fadminwrite2', 'id' => 'fadminwrite2', 'onSubmit' => 'return deletecheck()');
|
||||
echo form_open(current_full_url(), $attributes);
|
||||
?>
|
||||
<input type="hidden" name="day" value="<?php echo element('day', $view); ?>" />
|
||||
<input type="hidden" name="criterion" value="<?php echo element('criterion', $view); ?>" />
|
||||
<input type="hidden" name="log_count" value="<?php echo element('log_count', $view); ?>" />
|
||||
<?php echo element('msg', $view); ?>
|
||||
<div class="box-button btn-group">
|
||||
<button type="submit" class="btn btn-success btn-sm">삭제하기</button>
|
||||
</div>
|
||||
<?php
|
||||
echo form_close();
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
$(function() {
|
||||
$('#fadminwrite').validate({
|
||||
rules: {
|
||||
day: {required:true, number:true, min:0}
|
||||
}
|
||||
});
|
||||
});
|
||||
//]]>
|
||||
</script>
|
||||
181
application/views/admin/basic/board/filedownload/graph.php
Normal file
181
application/views/admin/basic/board/filedownload/graph.php
Normal file
@@ -0,0 +1,181 @@
|
||||
<div class="box">
|
||||
<div class="box-table">
|
||||
<div class="box-table-header">
|
||||
<ul class="nav nav-pills">
|
||||
<li role="presentation"><a href="<?php echo admin_url($this->pagedir); ?>">파일다운로드</a></li>
|
||||
<li role="presentation" class="active"><a href="<?php echo admin_url($this->pagedir . '/graph'); ?>">기간별 그래프</a></li>
|
||||
<li role="presentation"><a href="<?php echo admin_url($this->pagedir . '/cleanlog'); ?>">오래된 로그삭제</a></li>
|
||||
</ul>
|
||||
<form class="form-inline" name="flist" action="<?php echo current_url(); ?>" method="get" >
|
||||
<input type="hidden" name="datetype" value="<?php echo html_escape($this->input->get('datetype')); ?>" />
|
||||
<div class="box-table-button">
|
||||
<?php if (element('boardlist', $view)) { ?>
|
||||
<span class="mr10">
|
||||
<select name="brd_id" class="form-control">
|
||||
<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>
|
||||
</span>
|
||||
<?php } ?>
|
||||
<span class="mr10">
|
||||
기간 : <input type="text" class="form-control input-small datepicker " name="start_date" value="<?php echo element('start_date', $view); ?>" readonly="readonly" /> - <input type="text" class="form-control input-small datepicker" name="end_date" value="<?php echo element('end_date', $view); ?>" readonly="readonly" />
|
||||
</span>
|
||||
<div class="btn-group" role="group" aria-label="...">
|
||||
<button type="button" class="btn <?php echo ($this->input->get('datetype') !== 'y' && $this->input->get('datetype') !== 'm') ? 'btn-success' : 'btn-default'; ?> btn-sm" onclick="fdate_submit('d');">일별보기</button>
|
||||
<button type="button" class="btn <?php echo ($this->input->get('datetype') === 'm') ? 'btn-success' : 'btn-default'; ?> btn-sm" onclick="fdate_submit('m');">월별보기</button>
|
||||
<button type="button" class="btn <?php echo ($this->input->get('datetype') === 'y') ? 'btn-success' : 'btn-default'; ?> btn-sm" onclick="fdate_submit('y');">년별보기</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
function fdate_submit(datetype)
|
||||
{
|
||||
var f = document.flist;
|
||||
f.datetype.value = datetype;
|
||||
f.submit();
|
||||
}
|
||||
//]]>
|
||||
</script>
|
||||
</div>
|
||||
<div id="chart_div"></div>
|
||||
<div class="table-responsive">
|
||||
<div class="pull-right form-group">
|
||||
<label for="withoutzero" class="checkbox-inline">
|
||||
<input type="checkbox" name="withoutzero" id="withoutzero" value="1" /> 다운로드수가 0 인 데이터 제외
|
||||
</label>
|
||||
<label for="orderdesc" class="checkbox-inline">
|
||||
<input type="checkbox" name="orderdesc" id="orderdesc" value="1"/> 역순으로보기
|
||||
</label>
|
||||
</div>
|
||||
<table class="table table-hover table-striped table-bordered">
|
||||
<colgroup>
|
||||
<col class="col-md-2">
|
||||
<col class="col-md-2">
|
||||
<col class="col-md-2">
|
||||
<col class="col-md-6">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>기간</th>
|
||||
<th>다운로드수</th>
|
||||
<th>비율</th>
|
||||
<th>그래프</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="graphlist">
|
||||
<?php
|
||||
if (element('list', $view)) {
|
||||
foreach (element('list', $view) as $key => $result) {
|
||||
?>
|
||||
<tr class="<?php echo ( ! element('count', $result)) ? 'zerodata' : ''; ?>">
|
||||
<td><?php echo $key; ?></td>
|
||||
<td><?php echo element('count', $result, 0); ?></td>
|
||||
<td><?php echo element('s_rate', $result, 0); ?>%</td>
|
||||
<td>
|
||||
<div class="progress">
|
||||
<div class="progress-bar progress-bar-warning progress-bar-striped" role="progressbar" aria-valuenow="<?php echo element('s_rate', $result, 0); ?>" aria-valuemin="0" aria-valuemax="<?php echo element('max_value', $view, 0); ?>" style="width: <?php echo element('bar', $result, 0); ?>%">
|
||||
<span class="sr-only"><?php echo element('s_rate', $result, 0); ?>%</span>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
</tbody>
|
||||
<?php
|
||||
if (element('list', $view)) {
|
||||
?>
|
||||
<tfoot>
|
||||
<tr class="warning">
|
||||
<td>전체</td>
|
||||
<td><?php echo element('sum_count', $view, 0); ?></td>
|
||||
<td></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
<div class="box-info">
|
||||
<div class="btn-group pull-right" role="group" aria-label="...">
|
||||
<button type="button" class="btn btn-outline btn-success btn-sm" id="export_to_excel"><i class="fa fa-file-excel-o"></i> 엑셀 다운로드</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
// Load the Visualization API and the corechart package.
|
||||
google.charts.load('current', {'packages':['corechart']});
|
||||
|
||||
// Set a callback to run when the Google Visualization API is loaded.
|
||||
google.charts.setOnLoadCallback(drawChart);
|
||||
|
||||
// Callback that creates and populates a data table,
|
||||
// instantiates the pie chart, passes in the data and
|
||||
// draws it.
|
||||
function drawChart() {
|
||||
|
||||
var data = new google.visualization.DataTable();
|
||||
|
||||
data.addColumn('string', '기간');
|
||||
data.addColumn('number', '다운로드 수');
|
||||
data.addRows([
|
||||
<?php
|
||||
if (element('list', $view)) {
|
||||
foreach (element('list', $view) as $key => $result) {
|
||||
?>
|
||||
['<?php echo $key; ?>',<?php echo element('count', $result, 0); ?>],
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
]);
|
||||
|
||||
var chart = new google.visualization.AreaChart(document.getElementById('chart_div'));
|
||||
|
||||
chart.draw(data, {
|
||||
width: '100%', height: '400',
|
||||
legendTextStyle: {fontName: 'gulim', fontSize: '12'},
|
||||
tooltipTextStyle: {color: '#006679', fontName: 'dotum', fontSize: '12'},
|
||||
hAxis: {textStyle: {color: '#959595', fontName: 'dotum', fontSize: '12'}},
|
||||
vAxis: {textStyle: {color: '#959595', fontName: 'dotum', fontSize: '12'}, gridlineColor: '#e1e1e1', baselineColor: '#e1e1e1', textPosition: 'out'},
|
||||
lineWidth: 3,
|
||||
pointSize: 5
|
||||
});
|
||||
}
|
||||
|
||||
$(document).on('change', '#withoutzero', function(){
|
||||
if (this.checked) {
|
||||
$('.zerodata').hide();
|
||||
} else {
|
||||
$('.zerodata').show();
|
||||
}
|
||||
})
|
||||
$(document).on('change', '#orderdesc', function(){
|
||||
var $body = $('tbody.graphlist');
|
||||
var list = $body.children('tr');
|
||||
$body.html(list.get().reverse());
|
||||
})
|
||||
$(document).on('click', '#export_to_excel', function(){
|
||||
exporturl = '<?php echo admin_url($this->pagedir . '/graph/excel' . '?' . $this->input->server('QUERY_STRING', null, '')); ?>';
|
||||
if ($('#withoutzero:checked').length)
|
||||
{
|
||||
exporturl += '&withoutzero=1';
|
||||
}
|
||||
if ($('#orderdesc:checked').length)
|
||||
{
|
||||
exporturl += '&orderby=desc';
|
||||
}
|
||||
document.location.href = exporturl;
|
||||
})
|
||||
</script>
|
||||
@@ -0,0 +1,35 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo config_item('charset');?>" />
|
||||
<style type="text/css">
|
||||
th {font-weight:bold;padding:5px; min-width:120px; width:120px; _width:120px; text-align:center; line-height:18px; font-size:12px; color:#959595; font-family:dotum,돋움; border-right:1px solid #e4e4e4;}
|
||||
td {text-align:center; line-height:40px; font-size:12px; color:#474747; font-family:gulim,굴림; border-right:1px solid #e4e4e4;}
|
||||
</style>
|
||||
<table width="100%" border="1" bordercolor="#E4E4E4" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<th height="40">기간</th>
|
||||
<th>다운로드수</th>
|
||||
<th>비율</th>
|
||||
</tr>
|
||||
<?php
|
||||
if (element('list', $view)) {
|
||||
foreach (element('list', $view) as $key => $result) {
|
||||
if ($this->input->get('withoutzero') && ! element('count', $result)) {
|
||||
continue;
|
||||
}
|
||||
?>
|
||||
<tr>
|
||||
<td height="40"><?php echo $key; ?></td>
|
||||
<td><?php echo element('count', $result, 0); ?></td>
|
||||
<td><?php echo element('s_rate', $result, 0); ?>%</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<tr>
|
||||
<td height="40" bgcolor="#DEDEDE">전체</td>
|
||||
<td bgcolor="#DEDEDE"><?php echo element('sum_count', $view, 0); ?></td>
|
||||
<td bgcolor="#DEDEDE"></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</table>
|
||||
112
application/views/admin/basic/board/filedownload/index.php
Normal file
112
application/views/admin/basic/board/filedownload/index.php
Normal file
@@ -0,0 +1,112 @@
|
||||
<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" 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>
|
||||
<li role="presentation"><a href="<?php echo admin_url($this->pagedir . '/cleanlog'); ?>">오래된 로그삭제</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();
|
||||
?>
|
||||
<?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('pfd_id', element('sort', $view)); ?>">번호</a></th>
|
||||
<th>게시판</th>
|
||||
<th>게시물</th>
|
||||
<th>게시물작성자</th>
|
||||
<th>파일</th>
|
||||
<th>파일크기</th>
|
||||
<th>다운로드일시</th>
|
||||
<th>다운로드 IP</th>
|
||||
<th>다운로드 회원</th>
|
||||
<th>OS</th>
|
||||
<th>Browser</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="?brd_id=<?php echo element('brd_id', $result); ?>"><?php echo html_escape(element('brd_name', element('board', $result))); ?></a> <a href="<?php echo goto_url(element('boardurl', $result)); ?>" target="_blank"><span class="fa fa-external-link"></span></a></td>
|
||||
<td><a href="?sfield=post.post_id&skeyword=<?php echo element('post_id', $result); ?>"><?php echo html_escape(element('post_title', $result)); ?></a> <a href="<?php echo goto_url(element('posturl', $result)); ?>" target="_blank"><span class="fa fa-external-link"></span></a></td>
|
||||
<td><?php echo element('post_display_name', $result); ?> <?php if (element('post_userid', $result)) { ?> ( <a href="?sfield=post.mem_id&skeyword=<?php echo element('post_mem_id', $result); ?>"><?php echo html_escape(element('post_userid', $result)); ?></a> ) <?php } ?></td>
|
||||
<td><a href="<?php echo element('download_link', $result); ?>"><?php echo html_escape(element('pfi_originname', $result)); ?></a></td>
|
||||
<td><?php echo byte_format(element('pfi_filesize', $result), 2); ?></td>
|
||||
<td><?php echo display_datetime(element('pfd_datetime', $result), 'full'); ?></td>
|
||||
<td><a href="?sfield=pfd_ip&skeyword=<?php echo display_admin_ip(element('pfd_ip', $result)); ?>"><?php echo display_admin_ip(element('pfd_ip', $result)); ?></a></td>
|
||||
<td><?php echo element('display_name', $result); ?> <?php if (element('mem_userid', element('member', $result))) { ?> ( <a href="?sfield=post_file_download_log.mem_id&skeyword=<?php echo element('mem_id', $result); ?>"><?php echo html_escape(element('mem_userid', element('member', $result))); ?></a> ) <?php } ?></td>
|
||||
<td><?php echo element('os', $result); ?></td>
|
||||
<td><?php echo element('browsername', $result); ?> <?php echo element('browserversion', $result); ?> <?php echo element('engine', $result); ?></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="12" 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>
|
||||
Reference in New Issue
Block a user