mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 11:11:39 +09:00
Clean up capitalization and unnecessary methods in communication module classes
This commit is contained in:
parent
8940dd92ef
commit
8f32e94f8a
8 changed files with 8 additions and 39 deletions
|
|
@ -6,17 +6,8 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief communication module of the admin controller class
|
* @brief communication module of the admin controller class
|
||||||
*/
|
*/
|
||||||
class communicationAdminController extends communication
|
class CommunicationAdminController extends communication
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialization
|
|
||||||
*/
|
|
||||||
function init()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* save configurations of the communication module
|
* save configurations of the communication module
|
||||||
* @return void|Object (success : void, fail : Object)
|
* @return void|Object (success : void, fail : Object)
|
||||||
|
|
|
||||||
|
|
@ -6,17 +6,8 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief communication module of the admin model class
|
* @brief communication module of the admin model class
|
||||||
*/
|
*/
|
||||||
class communicationAdminModel extends communication
|
class CommunicationAdminModel extends communication
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialization
|
|
||||||
*/
|
|
||||||
function init()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the html to select colorset of the skin
|
* the html to select colorset of the skin
|
||||||
* @return void
|
* @return void
|
||||||
|
|
|
||||||
|
|
@ -6,17 +6,8 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* communication module of the admin view class
|
* communication module of the admin view class
|
||||||
*/
|
*/
|
||||||
class communicationAdminView extends communication
|
class CommunicationAdminView extends communication
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialization
|
|
||||||
*/
|
|
||||||
function init()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* configuration to manage messages and friends
|
* configuration to manage messages and friends
|
||||||
* @return void
|
* @return void
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* communication module of the high class
|
* communication module of the high class
|
||||||
*/
|
*/
|
||||||
class communication extends ModuleObject
|
class Communication extends ModuleObject
|
||||||
{
|
{
|
||||||
private $triggers = array(
|
private $triggers = array(
|
||||||
array('moduleHandler.init', 'communication', 'controller', 'triggerModuleHandlerBefore', 'before'),
|
array('moduleHandler.init', 'communication', 'controller', 'triggerModuleHandlerBefore', 'before'),
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,8 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* communication module of the Controller class
|
* communication module of the Controller class
|
||||||
*/
|
*/
|
||||||
class communicationController extends communication
|
class CommunicationController extends communication
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialization
|
* Initialization
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,8 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* Mobile class of communication module
|
* Mobile class of communication module
|
||||||
*/
|
*/
|
||||||
class communicationMobile extends communicationView
|
class CommunicationMobile extends communicationView
|
||||||
{
|
{
|
||||||
|
|
||||||
function init()
|
function init()
|
||||||
{
|
{
|
||||||
$this->config = CommunicationModel::getConfig();
|
$this->config = CommunicationModel::getConfig();
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,8 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* communication module of the Model class
|
* communication module of the Model class
|
||||||
*/
|
*/
|
||||||
class communicationModel extends communication
|
class CommunicationModel extends communication
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialization
|
* Initialization
|
||||||
* @return void
|
* @return void
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,8 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* View class of communication module
|
* View class of communication module
|
||||||
*/
|
*/
|
||||||
class communicationView extends communication
|
class CommunicationView extends communication
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialization
|
* Initialization
|
||||||
* @return void
|
* @return void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue