mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-10 04:03:01 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9029 201d5d3c-b55e-5fd7-737f-ddc643e51545
95 lines
3.1 KiB
PHP
95 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* @class addon
|
|
* @author NHN (developers@xpressengine.com)
|
|
* @brief high class of addon modules
|
|
**/
|
|
|
|
class addon extends ModuleObject {
|
|
|
|
/**
|
|
* @brief Implement if additional tasks are necessary when installing
|
|
**/
|
|
function moduleInstall() {
|
|
// Register to add a few
|
|
$oAddonController = &getAdminController('addon');
|
|
$oAddonController->doInsert('autolink');
|
|
$oAddonController->doInsert('blogapi');
|
|
$oAddonController->doInsert('counter');
|
|
$oAddonController->doInsert('member_communication');
|
|
$oAddonController->doInsert('member_extra_info');
|
|
$oAddonController->doInsert('mobile');
|
|
$oAddonController->doInsert('referer');
|
|
$oAddonController->doInsert('resize_image');
|
|
$oAddonController->doInsert('openid_delegation_id');
|
|
$oAddonController->doInsert('point_level_icon');
|
|
// To add a few changes to the default activation state
|
|
$oAddonController->doActivate('autolink');
|
|
$oAddonController->doActivate('counter');
|
|
$oAddonController->doActivate('member_communication');
|
|
$oAddonController->doActivate('member_extra_info');
|
|
$oAddonController->doActivate('mobile');
|
|
$oAddonController->doActivate('referer');
|
|
$oAddonController->doActivate('resize_image');
|
|
$oAddonController->makeCacheFile(0);
|
|
return new Object();
|
|
}
|
|
|
|
/**
|
|
* @brief a method to check if successfully installed
|
|
**/
|
|
function checkUpdate() {
|
|
$oDB = &DB::getInstance();
|
|
if(!$oDB->isColumnExists("addons", "is_used_m")) return true;
|
|
if(!$oDB->isColumnExists("addons_site", "is_used_m")) return true;
|
|
|
|
// 2011. 7. 29. add is_fixed column
|
|
if (!$oDB->isColumnExists('addons', 'is_fixed')) return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @brief Execute update
|
|
**/
|
|
function moduleUpdate() {
|
|
$oDB = &DB::getInstance();
|
|
if(!$oDB->isColumnExists("addons", "is_used_m")) {
|
|
$oDB->addColumn("addons", "is_used_m", "char", 1, "N", true);
|
|
}
|
|
if(!$oDB->isColumnExists("addons_site", "is_used_m")) {
|
|
$oDB->addColumn("addons_site", "is_used_m", "char", 1, "N", true);
|
|
}
|
|
|
|
// 2011. 7. 29. add is_fixed column
|
|
if (!$oDB->isColumnExists('addons', 'is_fixed'))
|
|
{
|
|
$oDB->addColumn('addons', 'is_fixed', 'char', 1, 'N', true);
|
|
|
|
// move addon info to addon_site table
|
|
$output = executeQueryArray('addon.getAddons');
|
|
if ($output->data)
|
|
{
|
|
foreach($output->data as $row)
|
|
{
|
|
$args->site_srl = 0;
|
|
$args->addon = $row->addon;
|
|
$args->is_used = $row->is_used;
|
|
$args->is_used_m = $row->is_used_m;
|
|
$args->extra_vars = $row->extra_vars;
|
|
executeQuery('addon.insertSiteAddon', $args);
|
|
}
|
|
}
|
|
}
|
|
|
|
return new Object(0, 'success_updated');
|
|
}
|
|
|
|
/**
|
|
* @brief Re-generate the cache file
|
|
**/
|
|
function recompileCache() {
|
|
}
|
|
|
|
}
|
|
?>
|