*/ /** * @class krzipAdminView * @author NAVER (developers@xpressengine.com) * @brief Krzip module admin view class. */ class krzipAdminView extends krzip { function init() { $this->setTemplatePath($this->module_path . 'tpl'); $this->setTemplateFile(lcfirst(str_replace('dispKrzipAdmin', '', $this->act))); } function dispKrzipAdminConfig() { $oKrzipModel = getModel('krzip'); $module_config = $oKrzipModel->getConfig(); Context::set('module_config', $module_config); } } /* End of file krzip.admin.view.php */ /* Location: ./modules/krzip/krzip.admin.view.php */