#18985672 : separate mobile/pc for addons

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7576 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2010-07-02 09:46:00 +00:00
parent 074074623f
commit 7f325e46e9
16 changed files with 89 additions and 28 deletions

View file

@ -50,6 +50,7 @@
$info->addon = $addon_name;
$info->path = $path;
$info->activated = false;
$info->mactivated = false;
// DB에 입력되어 있는지 확인
if(!in_array($addon_name, array_keys($inserted_addons))) {
@ -60,6 +61,7 @@
// 활성화 되어 있는지 확인
} else {
if($inserted_addons[$addon_name]->is_used=='Y') $info->activated = true;
if($inserted_addons[$addon_name]->is_used_m=='Y') $info->mactivated = true;
}
$list[] = $info;
@ -292,12 +294,16 @@
/**
* @brief 애드온이 활성화 되어 있는지 체크
**/
function isActivatedAddon($addon, $site_srl = 0) {
function isActivatedAddon($addon, $site_srl = 0, $type = "pc") {
$args->addon = $addon;
if(!$site_srl) $output = executeQuery('addon.getAddonIsActivated', $args);
if(!$site_srl) {
if($type == "pc") $output = executeQuery('addon.getAddonIsActivated', $args);
else $output = executeQuery('addon.getMAddonIsActivated', $args);
}
else {
$args->site_srl = $site_srl;
$output = executeQuery('addon.getSiteAddonIsActivated', $args);
if($type == "pc") $output = executeQuery('addon.getSiteAddonIsActivated', $args);
else $output = executeQuery('addon.getSiteMAddonIsActivated', $args);
}
if($output->data->count>0) return true;
return false;