rhymix/modules/communication/communication.admin.controller.php
ngleader b8299c8a65 merge sandbox to trunk for 1.4.4
git-svn-id: http://xe-core.googlecode.com/svn/trunk@7723 201d5d3c-b55e-5fd7-737f-ddc643e51545
2010-09-28 07:24:47 +00:00

35 lines
1 KiB
PHP

<?php
/**
* @class communicationAdminController
* @author NHN (developers@xpressengine.com)
* @brief communication module의 admin controller class
**/
class communicationAdminController extends communication {
/**
* @brief 초기화
**/
function init() {
}
/**
* @brief communication 모듈 설정 저장
**/
function procCommunicationAdminInsertConfig() {
// 기본 정보를 받음
$args = Context::gets('skin','colorset','editor_skin','editor_colorset');
if(!$args->skin) $args->skin = "default";
if(!$args->colorset) $args->colorset = "white";
if(!$args->editor_skin) $args->editor_skin = "default";
// module Controller 객체 생성하여 입력
$oModuleController = &getController('module');
$output = $oModuleController->insertModuleConfig('communication',$args);
return $output;
}
}
?>