묻고답하기
관리자 페이지에 제가 만든 모듈을 추가했는데 안나옵니다 ㅠㅠ 살려주세요
2009.06.09 00:01
아 살려주세요 ㅠㅠ
이거때문에 이틀 내내 별별 삽질을 해봤는데도 안되네요ㅠ
제발 뭐 아는거 있으심 가르쳐주세요
모듈을 하나 추가했고요
이름은 omepayment 입니다.
<?xml version="1.0" encoding="utf-8"?>
<module>
<grants />
<permissions />
<actions>
<action name="dispOMEPaymentAdminList" type="view" standalone="true" admin_index="true" index="true" />
<action name="procOMEPaymentInsertOMEPayment" type="controller" standalone="true" />
</actions>
</module>
module.xml 파일은 위와 같고
class omepaymentAdminView extends omepayment {
/**
* @brief 초기화
**/
function init() {
debugPrint("A");
}
function dispOMEPaymentAdminList()
{
debugPrint("B");
$args->page = Context::get('page');
$output = executeQueryArray("omepayment.getOMEPaymentList", $args);
debugPrint($output);
if(!$output->data) $output->data = array();
Context::set('omepayment_list', $output->data);
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('page_navigation', $output->page_navigation);
$this->setTemplatePath($this->module_path.'tpl');
$this->setTemplateFile('omepayment_list');
}
}
omepayment.admin.view.php 파일은 위와 같습니다.
현재 상황은 관리자 페이지 들어가면
왼쪽 메뉴에 정상적으로 OME 결재관리 라고 하는 메뉴가 뜨구요
근데 누르면 제가 만들어놓은 View 가 불러지질 않고
그냥 관리자 초기 페이지처럼 모듈 목록들이 나와 버립니다 ㅠ
그냥 딴거 필요 없고 저기 위에 debugPrint("A"); 나 debugPrint("B");
해놓은거라도 나오면 소원이 없겠습니다. 그다음은 제가 해결할 수 있을거 같거든요 ㅠ
아 ㅠㅠ 혹시 관리자 페이지에 메뉴를 추가할 경우에 추가적으로 해줘야 하는 일들이 있나요?
admin 모듈에다가 뭔가 추가해줘야된다든지 하는거요 ㅠㅠ
아 진짜 이번에는 도와주시는 분이 계셨으면 좋겠네요
부탁드립니다. 감사합니다.
해결했습니다.
=.=;;
같은 문제 있으신 분들은 쪽지 주세요. 도와드립니다.