mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix incorrectly capitalized class names in message module
This commit is contained in:
parent
97e14fee65
commit
a55ba4fab9
6 changed files with 7 additions and 6 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief admin controller class of message module
|
* @brief admin controller class of message module
|
||||||
*/
|
*/
|
||||||
class messageAdminController extends message
|
class MessageAdminController extends Message
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
||||||
class messageAdminModel extends message{
|
class MessageAdminModel extends Message
|
||||||
|
{
|
||||||
public function getMessageAdminColorset()
|
public function getMessageAdminColorset()
|
||||||
{
|
{
|
||||||
$skin = Context::get('skin');
|
$skin = Context::get('skin');
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief admin view class of the message module
|
* @brief admin view class of the message module
|
||||||
*/
|
*/
|
||||||
class messageAdminView extends message
|
class MessageAdminView extends Message
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief high class of message module
|
* @brief high class of message module
|
||||||
*/
|
*/
|
||||||
class message extends ModuleObject
|
class Message extends ModuleObject
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Implement if additional tasks are necessary when installing
|
* @brief Implement if additional tasks are necessary when installing
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
||||||
|
|
||||||
class messageMobile extends messageView
|
class MessageMobile extends MessageView
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief view class of the message module
|
* @brief view class of the message module
|
||||||
*/
|
*/
|
||||||
class messageView extends message
|
class MessageView extends Message
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue