mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
26 lines
645 B
PHP
26 lines
645 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
/**
|
|
* @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 */
|