rhymix/modules/message/message.admin.controller.php
mosmartin 4d272994dd english comments added
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0_english@8278 201d5d3c-b55e-5fd7-737f-ddc643e51545
2011-04-06 16:48:06 +00:00

30 lines
808 B
PHP

<?php
/**
* @class messageAdminController
* @author NHN (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->skin = Context::get('skin');
// Create a module Controller object
$oModuleController = &getController('module');
$output = $oModuleController->insertModuleConfig('message',$args);
if(!$output->toBool()) return $output;
$this->setMessage('success_updated');
}
}
?>