mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 08:41:39 +09:00
91 lines
1.6 KiB
PHP
91 lines
1.6 KiB
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
/**
|
|
* High class of counter module
|
|
*
|
|
* @author NAVER (developers@xpressengine.com)
|
|
*/
|
|
class counter extends ModuleObject
|
|
{
|
|
|
|
/**
|
|
* Implement if additional tasks are necessary when installing
|
|
* @return Object
|
|
*/
|
|
function moduleInstall()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* method if successfully installed
|
|
*
|
|
* @return bool
|
|
*/
|
|
function checkUpdate()
|
|
{
|
|
$oDB = DB::getInstance();
|
|
if ($oDB->isTableExists('counter_site_status'))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
// Index optimization
|
|
if (!$oDB->isIndexExists('counter_log', 'idx_regdate_ipaddress'))
|
|
{
|
|
return true;
|
|
}
|
|
if ($oDB->isIndexExists('counter_log', 'idx_site_counter_log'))
|
|
{
|
|
return true;
|
|
}
|
|
if ($oDB->isIndexExists('counter_log', 'idx_counter_log'))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Module update
|
|
*
|
|
* @return Object
|
|
*/
|
|
function moduleUpdate()
|
|
{
|
|
$oDB = DB::getInstance();
|
|
if ($oDB->isTableExists('counter_site_status'))
|
|
{
|
|
$oDB->dropTable('counter_site_status');
|
|
}
|
|
|
|
// Index optimization
|
|
if (!$oDB->isIndexExists('counter_log', 'idx_regdate_ipaddress'))
|
|
{
|
|
$oDB->addIndex('counter_log', 'idx_regdate_ipaddress', ['regdate(8)', 'ipaddress']);
|
|
}
|
|
if ($oDB->isIndexExists('counter_log', 'idx_site_counter_log'))
|
|
{
|
|
$oDB->dropIndex('counter_log', 'idx_site_counter_log');
|
|
}
|
|
if ($oDB->isIndexExists('counter_log', 'idx_counter_log'))
|
|
{
|
|
$oDB->dropIndex('counter_log', 'idx_counter_log');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* re-generate the cache file
|
|
*
|
|
* @return Object
|
|
*/
|
|
function recompileCache()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
/* End of file counter.class.php */
|
|
/* Location: ./modules/counter/counter.class.php */
|