setTemplatePath($this->module_path.'tpl.admin'); } /** * @brief 애드온 관리 메인 페이지 **/ function dispIndex() { $this->dispAddonList(); } /** * @brief 애드온 목록을 보여줌 **/ function dispAddonList() { // 애드온 목록을 세팅 $oAddonModel = &getModel('addon'); $addon_list = $oAddonModel->getAddonList(); Context::set('addon_list', $addon_list); $this->setTemplateFile('addon_list'); } } ?>