mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
36 lines
1 KiB
PHP
36 lines
1 KiB
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
/**
|
|
* @class messageAdminController
|
|
* @author NAVER (developers@xpressengine.com)
|
|
* @brief admin controller class of message module
|
|
*/
|
|
class MessageAdminController extends Message
|
|
{
|
|
/**
|
|
* @brief Initialization
|
|
*/
|
|
function init()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @brief Configuration
|
|
*/
|
|
function procMessageAdminInsertConfig()
|
|
{
|
|
// Get information
|
|
$args = Context::gets('skin', 'mskin', 'colorset', 'mcolorset');
|
|
// Create a module Controller object
|
|
$oModuleController = getController('module');
|
|
$output = $oModuleController->insertModuleConfig('message',$args);
|
|
if(!$output->toBool()) return $output;
|
|
|
|
$this->setMessage('success_updated');
|
|
|
|
$returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispMessageAdminConfig');
|
|
$this->setRedirectUrl($returnUrl);
|
|
}
|
|
}
|
|
/* End of file message.admin.controller.php */
|
|
/* Location: ./modules/message/message.admin.controller.php */
|