mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Add krzip module
This commit is contained in:
parent
1a8b5c8b29
commit
7bef97f170
26 changed files with 1611 additions and 0 deletions
26
modules/krzip/krzip.admin.view.php
Normal file
26
modules/krzip/krzip.admin.view.php
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue