mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Add krzip module
This commit is contained in:
parent
1a8b5c8b29
commit
7bef97f170
26 changed files with 1611 additions and 0 deletions
30
modules/krzip/krzip.controller.php
Normal file
30
modules/krzip/krzip.controller.php
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
||||
/**
|
||||
* @class krzipController
|
||||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief Krzip module controller class.
|
||||
*/
|
||||
|
||||
class krzipController extends krzip
|
||||
{
|
||||
function updateConfig($args)
|
||||
{
|
||||
if(!$args || !is_object($args))
|
||||
{
|
||||
$args = new stdClass();
|
||||
}
|
||||
|
||||
$oModuleController = getController('module');
|
||||
$output = $oModuleController->updateModuleConfig('krzip', $args);
|
||||
if($output->toBool())
|
||||
{
|
||||
unset($this->module_config);
|
||||
}
|
||||
|
||||
return $output;
|
||||
}
|
||||
}
|
||||
|
||||
/* End of file krzip.controller.php */
|
||||
/* Location: ./modules/krzip/krzip.controller.php */
|
||||
Loading…
Add table
Add a link
Reference in a new issue