mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@25 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
507b09a62e
commit
c690cff0c8
17 changed files with 1216 additions and 1028 deletions
|
|
@ -2,55 +2,52 @@
|
|||
/**
|
||||
* @class Module
|
||||
* @author zero (zero@nzeo.com)
|
||||
* @brief modules 의 abstract class
|
||||
* @brief module의 abstract class
|
||||
**/
|
||||
|
||||
class Module extends Output {
|
||||
|
||||
var $module_path = NULL; ///< 현재 모듈의 실행 위치
|
||||
|
||||
var $skin = 'default'; ///< skin 설정 (없을 경우도 있음)
|
||||
class Module extends Object {
|
||||
|
||||
var $mid = NULL; ///< module로 생성한 instance(관리상)의 값
|
||||
var $module = NULL; ///< mid로 찾아서 생성한 모듈 class 이름
|
||||
var $module_srl = NULL; ///< 모듈 객체의 고유값인 module_srl
|
||||
var $module_info = NULL; ///< 현재 모듈 생성시 주어진 설정 정보들
|
||||
var $module_info = NULL; ///< 모듈의 정보
|
||||
|
||||
var $module_path = NULL; ///< 모듈 class file의 실행 위치
|
||||
|
||||
var $act = NULL; ///< act 값
|
||||
var $act_type = 'disp'; ///< act_type (disp, proc, lib, admin 4가지 존재, act에서 type을 찾음)
|
||||
|
||||
var $layout_path = "./common/tpl/"; ///< 레이아웃 파일의 path
|
||||
var $layout_tpl = "default_layout"; ///< 레이아웃 파일
|
||||
var $template_path = NULL; ///< template 경로
|
||||
var $template_file = NULL; ///< template 파일
|
||||
|
||||
var $layout_path = './common/tpl/'; ///< 레이아웃 경로
|
||||
var $layout_file = 'default_layout.html'; ///< 레이아웃 파일
|
||||
|
||||
/**
|
||||
* @brief 현재 모듈의 path를 지정
|
||||
**/
|
||||
function setModulePath($path) {
|
||||
if(substr($path,-1)!='/') $path.='/';
|
||||
$this->module_path = $path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 모듈의 정보 세팅
|
||||
**/
|
||||
function moduleInit($module_info) {
|
||||
// 브라우저 타이틀 지정
|
||||
Context::setBrowserTitle($module_info->browser_title?$module_info->browser_title:$module_info->mid);
|
||||
|
||||
function setModuleInfo($module_info) {
|
||||
// 기본 변수 설정
|
||||
$this->module_info = $module_info;
|
||||
context::set('module_info', &$this->module_info);
|
||||
|
||||
$this->mid = $module_info->mid;
|
||||
$this->module = $module_info->module;
|
||||
$this->module_srl = $module_info->module_srl;
|
||||
$this->module_info = $module_info;
|
||||
|
||||
// skin 설정 (기본으로는 default)
|
||||
if($this->module_info->skin) $this->skin = $this->module_info->skin;
|
||||
else $this->skin = 'default';
|
||||
|
||||
// 템플릿 위치 설정
|
||||
if(!$this->template_path) {
|
||||
$template_path = $this->module_path.'skins/'.$this->skin;
|
||||
$this->setTemplatePath($template_path);
|
||||
}
|
||||
|
||||
$oMember = getModule('member');
|
||||
$user_id = $oMember->getUserID();
|
||||
$logged_info = $oMember->getLoggedInfo();
|
||||
// 웹서비스에서 꼭 필요한 인증 정보와 권한 설정 체크
|
||||
$is_logged = Context::get('is_logged');
|
||||
$logged_info = Context::get('logged_info');
|
||||
$user_id = $logged_info->user_id;
|
||||
$user_group = $logged_info->group_list;
|
||||
$user_group_count = count($user_group);
|
||||
|
||||
// 로그인되어 있다면 admin 체크
|
||||
if($oMember->isLogged() && ($logged_info->is_admin == 'Y' || in_array($user_id, $this->module_info->admin_id) )) {
|
||||
if($is_logged && ($logged_info->is_admin == 'Y' || in_array($user_id, $this->module_info->admin_id) )) {
|
||||
$grant->is_admin = true;
|
||||
} else {
|
||||
$grant->is_admin = false;
|
||||
|
|
@ -58,7 +55,6 @@
|
|||
|
||||
// 권한 설정
|
||||
if($this->grant_list) {
|
||||
|
||||
foreach($this->grant_list as $grant_name) {
|
||||
$grant->{$grant_name} = false;
|
||||
|
||||
|
|
@ -67,7 +63,7 @@
|
|||
continue;
|
||||
}
|
||||
|
||||
if($user_group_count) {
|
||||
if(count($user_group)) {
|
||||
foreach($user_group as $group_srl) {
|
||||
if(in_array($group_srl, $this->module_info->grant[$grant_name])) {
|
||||
$grant->{$grant_name} = true;
|
||||
|
|
@ -87,49 +83,34 @@
|
|||
}
|
||||
|
||||
/**
|
||||
* @brief 현재 모듈에 $act에 해당하는 method가 있는지 체크
|
||||
* @brief template 파일 지정
|
||||
**/
|
||||
function isExistsAct($act) {
|
||||
return method_exists($this, $act);
|
||||
function setTemplateFile($filename) {
|
||||
if(substr($filename,-5)!='.html') $filename .= '.html';
|
||||
$this->template_file = $filename;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 현재 acT_type의 return (disp/proc)
|
||||
* @brief template 파일 return
|
||||
**/
|
||||
function getActType() {
|
||||
return $this->act_type;
|
||||
function getTemplateFile() {
|
||||
return $this->template_file;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 현재 모듈의 path를 지정
|
||||
* @brief template 경로 지정
|
||||
**/
|
||||
function setModulePath($path) {
|
||||
if(substr($path,-1)!='/') $path.='/';
|
||||
$this->module_path = $path;
|
||||
function setTemplatePath($path) {
|
||||
if(substr($path,-1)!='/') $path .= '/';
|
||||
if(substr($path,0,2)!='./') $path = './'.$path;
|
||||
$this->template_path = $path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 에러 유발. 에러시 message module을 바로 호출하고 현재 모듈은 exit
|
||||
* @brief template 경로 return
|
||||
**/
|
||||
function doError($msg_code) {
|
||||
$this->setError(-1);
|
||||
if(!Context::getLang($msg_code)) $this->setMessage($msg_code);
|
||||
else $this->setMessage(Context::getLang($msg_code));
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 레이아웃 경로를 지정
|
||||
**/
|
||||
function setLayoutPath($path) {
|
||||
$this->layout_path = $path;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief 레이아웃 tpl 파일을 지정
|
||||
**/
|
||||
function setLayoutTpl($tpl) {
|
||||
$this->layout_tpl = $tpl;
|
||||
function getTemplatePath() {
|
||||
return $this->template_path;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -143,38 +124,19 @@
|
|||
if($act) $this->act = $act;
|
||||
else $this->act = Context::get('act');
|
||||
|
||||
// act의 종류가 disp/proc인지에 대한 확인
|
||||
if($this->act&&strtolower(substr($this->act,0,4)) != 'disp') $this->act_type = 'proc';
|
||||
|
||||
// act값이 없거나 존재하지 않는 method를 호출시에 default_act를 지정
|
||||
if(!$this->act || !$this->isExistsAct($this->act)) $this->act = $this->default_act;
|
||||
|
||||
// module의 *init 호출 (기본 init과 proc/disp init 2가지 있음)
|
||||
if($this->act_type == 'proc') {
|
||||
$output = $this->procInit();
|
||||
if((is_a($output, 'Output') || is_subclass_of($output, 'Output')) && !$output->toBool() ) {
|
||||
$this->setError($output->getError());
|
||||
$this->setMessage($output->getMessage());
|
||||
return;
|
||||
} elseif(!$output) {
|
||||
$this->setError(-1);
|
||||
$this->setMessage('fail');
|
||||
return;
|
||||
}
|
||||
} else $this->dispInit();
|
||||
if(!$this->act || !method_exists($this, $this->act)) $this->act = $this->default_act;
|
||||
|
||||
// 기본 act조차 없으면 return
|
||||
if(!$this->isExistsAct($this->act)) return false;
|
||||
if(!method_exists($this, $this->act)) return false;
|
||||
|
||||
// act값으로 method 실행
|
||||
$output = call_user_method($this->act, $this);
|
||||
|
||||
if(is_a($output, 'Output') || is_subclass_of($output, 'Output')) {
|
||||
if(is_a($output, 'Object') || is_subclass_of($output, 'Object')) {
|
||||
$this->setError($output->getError());
|
||||
$this->setMessage($output->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue