#19667537 delete unused methods and variables. mark empty function cacheActList() as deprecated.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8283 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2011-04-07 09:25:13 +00:00
parent 98d6977c08
commit 345f80496c
4 changed files with 1 additions and 21 deletions

View file

@ -79,8 +79,6 @@
$oModuleController = &getController('module');
$oModuleController->insertModuleConfig('point', $config);
$this->cacheActList();
$this->setMessage('success_updated');
}
@ -105,8 +103,6 @@
}
}
$this->cacheActList();
$this->setMessage('success_updated');
}
@ -268,7 +264,6 @@
}
fclose($f);
$this->add('total', $total);
$this->add('position', $idx);
$this->setMessage(sprintf(Context::getLang('point_recal_message'), $idx, $total));
@ -302,6 +297,7 @@
/**
* @brief 캐시파일 저장
* @deprecated
**/
function cacheActList() {
return;

View file

@ -61,14 +61,6 @@
$this->setTemplateFile('module_config');
}
/**
* @brief 기능별 act 설정
**/
function dispPointAdminActConfig() {
// 템플릿 지정
$this->setTemplateFile('action_config');
}
/**
* @brief 회원 포인트순 목록 가져오기
**/

View file

@ -17,8 +17,6 @@
// 포인트 정보를 기록할 디렉토리 생성
FileHandler::makeDir('./files/member_extra_info/point');
$oModuleController = &getController('module');
// 최고레벨
$config->max_level = 30;

View file

@ -7,12 +7,6 @@
class pointController extends point {
var $config = null;
var $oPointModel = null;
var $member_code = array();
var $icon_width = 0;
var $icon_height = 0;
/**
* @brief 초기화
**/