mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
Fix incorrectly capitalized class names in module module
This commit is contained in:
parent
b1206b9cf1
commit
f5bd3a15ef
8 changed files with 8 additions and 8 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief admin controller class of the module module
|
* @brief admin controller class of the module module
|
||||||
*/
|
*/
|
||||||
class moduleAdminController extends module
|
class ModuleAdminController extends Module
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
* @brief AdminModel class of the "module" module
|
* @brief AdminModel class of the "module" module
|
||||||
*/
|
*/
|
||||||
class moduleAdminModel extends module
|
class ModuleAdminModel extends Module
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief admin view class of the module module
|
* @brief admin view class of the module module
|
||||||
*/
|
*/
|
||||||
class moduleAdminView extends module
|
class ModuleAdminView extends Module
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief high class of the module module
|
* @brief high class of the module module
|
||||||
*/
|
*/
|
||||||
class module extends ModuleObject
|
class Module extends ModuleObject
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Implement if additional tasks are necessary when installing
|
* @brief Implement if additional tasks are necessary when installing
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief controller class of the module module
|
* @brief controller class of the module module
|
||||||
*/
|
*/
|
||||||
class moduleController extends module
|
class ModuleController extends Module
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
||||||
class moduleMobile extends moduleObject
|
class ModuleMobile extends ModuleObject
|
||||||
{
|
{
|
||||||
function dispModuleChangeLang()
|
function dispModuleChangeLang()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief Model class of module module
|
* @brief Model class of module module
|
||||||
*/
|
*/
|
||||||
class moduleModel extends module
|
class ModuleModel extends Module
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Internal cache
|
* Internal cache
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief view class of the module module
|
* @brief view class of the module module
|
||||||
*/
|
*/
|
||||||
class moduleView extends module
|
class ModuleView extends Module
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue