묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
간단한 모듈 작성중인데 질문이 있습니다.
2009.01.02 21:54
<?xml version="1.0" encoding="utf-8"?>
<module>
<grants />
<actions>
<action name="dispTestAdminIndex" type="view" standalone="true" />
<action name="dispTestAdminRegForm" type="view" standalone="true" admin_index="true" />
</actions>
</module>
: module.xml 입니다.
제가 dispTestAdminRegForm이란것을 실행하고 싶은데 영 안되네요
class testAdminView extends test {
/**
* @brief 초기화
**/
function init() {
// 템플릿 경로 지정
$this->setTemplatePath($this->module_path.'tpl');
}
/**
* @brief 관리자 페이지 초기화면
**/
function dispTestAdminIndex() {
// test model 객체 생성
// test.model의 모듈을 call하는 것임
$oModel = &getAdminModel('test'); // test.model 을 가져오는 function getModel
$output = $oModel->getList(); // model에서 query를 실행해서 결과를 가져옴
// template에 사용할 value 정의
Context::set('output', $output);
$this->setTemplateFile('index');
}
// 등록 폼 출력
// RegForm.html이 tpl밑에 있는데 안 나오네요
function dispTestAdminRegForm()
{
$oModel = &getAdminModel('test'); // test.model 을 가져오는 function getModel
$this->setTemplateFile('RegForm');
echo "test";
}
}
제가 뭘 더 설정해줘야 하는건가요?
<module>
<grants />
<actions>
<action name="dispTestAdminIndex" type="view" standalone="true" />
<action name="dispTestAdminRegForm" type="view" standalone="true" admin_index="true" />
</actions>
</module>
: module.xml 입니다.
제가 dispTestAdminRegForm이란것을 실행하고 싶은데 영 안되네요
class testAdminView extends test {
/**
* @brief 초기화
**/
function init() {
// 템플릿 경로 지정
$this->setTemplatePath($this->module_path.'tpl');
}
/**
* @brief 관리자 페이지 초기화면
**/
function dispTestAdminIndex() {
// test model 객체 생성
// test.model의 모듈을 call하는 것임
$oModel = &getAdminModel('test'); // test.model 을 가져오는 function getModel
$output = $oModel->getList(); // model에서 query를 실행해서 결과를 가져옴
// template에 사용할 value 정의
Context::set('output', $output);
$this->setTemplateFile('index');
}
// 등록 폼 출력
// RegForm.html이 tpl밑에 있는데 안 나오네요
function dispTestAdminRegForm()
{
$oModel = &getAdminModel('test'); // test.model 을 가져오는 function getModel
$this->setTemplateFile('RegForm');
echo "test";
}
}
제가 뭘 더 설정해줘야 하는건가요?