mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
30 lines
622 B
PHP
30 lines
622 B
PHP
<?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 */
|