mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 15:21:40 +09:00
referer모듈의 관리자 페이지 table속성을 IE에서도 올바르게 나타나도록 css 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3108 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b3c9022918
commit
adb47d545d
3 changed files with 78 additions and 77 deletions
|
|
@ -6,22 +6,21 @@
|
|||
**/
|
||||
|
||||
class refererModel extends referer {
|
||||
function init()
|
||||
{
|
||||
}
|
||||
function init() {
|
||||
}
|
||||
|
||||
function isInsertedHost($host) {
|
||||
$args->host = $host;
|
||||
$output = executeQuery('referer.getHostStatus', $args);
|
||||
return $output->data->count?true:false;
|
||||
}
|
||||
function isInsertedHost($host) {
|
||||
$args->host = $host;
|
||||
$output = executeQuery('referer.getHostStatus', $args);
|
||||
return $output->data->count?true:false;
|
||||
}
|
||||
|
||||
function getLogList($obj)
|
||||
{
|
||||
$query_id = 'referer.getRefererLogList';
|
||||
function getLogList($obj) {
|
||||
$query_id = 'referer.getRefererLogList';
|
||||
|
||||
$args->sort_index = 'regdate';
|
||||
$args->page = $obj->page?$obj->page:1;
|
||||
|
||||
$args->sort_index = 'regdate';
|
||||
$args->page = $obj->page?$obj->page:1;
|
||||
$args->list_count = $obj->list_count?$obj->list_count:20;
|
||||
$args->page_count = $obj->page_count?$obj->page_count:10;
|
||||
|
||||
|
|
@ -31,13 +30,12 @@
|
|||
if(!$output->toBool()||!count($output->data)) return $output;
|
||||
|
||||
return $output;
|
||||
}
|
||||
}
|
||||
|
||||
function getRefererStatus()
|
||||
{
|
||||
$args->sort_index = 'count';
|
||||
return executeQuery("referer.getRefererStatistics", $args);
|
||||
}
|
||||
function getRefererStatus() {
|
||||
$args->sort_index = 'count';
|
||||
return executeQuery("referer.getRefererStatistics", $args);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue