git-svn-id: http://xe-core.googlecode.com/svn/trunk@1568 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-07 10:06:02 +00:00
parent 62900a4ba3
commit 3c34981ed1
8 changed files with 48 additions and 3 deletions

View file

@ -27,6 +27,11 @@
if(Context::get('is_logged')) $tpl_file = 'login_info';
else $tpl_file = 'login_form';
// 회원 관리 정보를 받음
$oModuleModel = &getModel('module');
$this->member_config = $oModuleModel->getModuleConfig('member');
Context::set('member_config', $this->member_config);
// 템플릿 컴파일
$oTemplate = &TemplateHandler::getInstance();
return $oTemplate->compile($tpl_path, $tpl_file);