mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-26 13:52:24 +09:00
issue 2119. supporting php 5.4. counter module.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12723 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
687fe8683b
commit
2e8b49acce
4 changed files with 227 additions and 86 deletions
|
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Admin view class of counter module
|
||||
*
|
||||
|
|
@ -6,6 +7,7 @@
|
|||
*/
|
||||
class counterAdminView extends counter
|
||||
{
|
||||
|
||||
/**
|
||||
* Initialization
|
||||
*
|
||||
|
|
@ -14,7 +16,7 @@ class counterAdminView extends counter
|
|||
function init()
|
||||
{
|
||||
// set the template path
|
||||
$this->setTemplatePath($this->module_path.'tpl');
|
||||
$this->setTemplatePath($this->module_path . 'tpl');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -26,28 +28,40 @@ class counterAdminView extends counter
|
|||
{
|
||||
// set today's if no date is given
|
||||
$selected_date = Context::get('selected_date');
|
||||
if(!$selected_date) $selected_date = date("Ymd");
|
||||
|
||||
if(!$selected_date)
|
||||
{
|
||||
$selected_date = date("Ymd");
|
||||
}
|
||||
|
||||
Context::set('selected_date', $selected_date);
|
||||
|
||||
// create the counter model object
|
||||
$oCounterModel = &getModel('counter');
|
||||
$oCounterModel = getModel('counter');
|
||||
|
||||
// get a total count and daily count
|
||||
$site_module_info = Context::get('site_module_info');
|
||||
$status = $oCounterModel->getStatus(array(0,$selected_date),$site_module_info->site_srl);
|
||||
$status = $oCounterModel->getStatus(array(0, $selected_date), $site_module_info->site_srl);
|
||||
|
||||
Context::set('total_counter', $status[0]);
|
||||
Context::set('selected_day_counter', $status[$selected_date]);
|
||||
|
||||
// get data by time, day, month, and year
|
||||
$type = Context::get('type');
|
||||
|
||||
if(!$type)
|
||||
{
|
||||
$type = 'day';
|
||||
Context::set('type',$type);
|
||||
Context::set('type', $type);
|
||||
}
|
||||
|
||||
$detail_status = $oCounterModel->getHourlyStatus($type, $selected_date, $site_module_info->site_srl);
|
||||
Context::set('detail_status', $detail_status);
|
||||
|
||||
// display
|
||||
$this->setTemplateFile('index');
|
||||
}
|
||||
|
||||
}
|
||||
/* End of file counter.admin.view.php */
|
||||
/* Location: ./modules/counter/counter.admin.view.php */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue