mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-18 01:42:14 +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
|
|
@ -19,18 +19,18 @@
|
|||
* @brief 관리자 페이지 초기화면
|
||||
**/
|
||||
function dispRefererAdminIndex() {
|
||||
$this->dispRefererAdminList();
|
||||
$this->dispRefererAdminList();
|
||||
}
|
||||
|
||||
function dispRefererAdminList() {
|
||||
function dispRefererAdminList() {
|
||||
|
||||
// 목록을 구하기 위한 옵션
|
||||
$args->page = Context::get('page'); ///< 페이지
|
||||
|
||||
$args->sort_index = 'regdate'; ///< 소팅 값
|
||||
|
||||
$oRefererModel = &getModel('referer');
|
||||
$output = $oRefererModel->getLogList($args);
|
||||
$oRefererModel = &getModel('referer');
|
||||
$output = $oRefererModel->getLogList($args);
|
||||
|
||||
Context::set('total_count', $output->total_count);
|
||||
Context::set('total_page', $output->total_page);
|
||||
|
|
@ -38,9 +38,10 @@
|
|||
Context::set('referer_list', $output->data);
|
||||
Context::set('page_navigation', $output->page_navigation);
|
||||
|
||||
$args2->sort_index = 'count';
|
||||
$output2 = $oRefererModel->getRefererStatus($args2);
|
||||
Context::set('referer_status', $output2->data);
|
||||
$args2->sort_index = 'count';
|
||||
$output2 = $oRefererModel->getRefererStatus($args2);
|
||||
Context::set('referer_status', $output2->data);
|
||||
|
||||
// 템플릿 지정
|
||||
$this->setTemplatePath($this->module_path.'tpl');
|
||||
$this->setTemplateFile('referer_list');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue