mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Fix capitalization of class names
This commit is contained in:
parent
e81d0500eb
commit
7444bc3f1d
38 changed files with 38 additions and 38 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief editor of the module admin controller class
|
* @brief editor of the module admin controller class
|
||||||
*/
|
*/
|
||||||
class editorAdminController extends editor
|
class EditorAdminController extends Editor
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief editor admin view of the module class
|
* @brief editor admin view of the module class
|
||||||
*/
|
*/
|
||||||
class editorAdminView extends editor
|
class EditorAdminView extends Editor
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief
|
* @brief
|
||||||
*/
|
*/
|
||||||
class editorAPI extends editor
|
class EditorAPI extends Editor
|
||||||
{
|
{
|
||||||
function dispEditorSkinColorset(&$oModule)
|
function dispEditorSkinColorset(&$oModule)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief high class of the editor odule
|
* @brief high class of the editor odule
|
||||||
*/
|
*/
|
||||||
class editor extends ModuleObject
|
class Editor extends ModuleObject
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Default font config
|
* @brief Default font config
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief editor module's controller class
|
* @brief editor module's controller class
|
||||||
*/
|
*/
|
||||||
class editorController extends editor
|
class EditorController extends Editor
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief model class of the editor odule
|
* @brief model class of the editor odule
|
||||||
*/
|
*/
|
||||||
class editorModel extends editor
|
class EditorModel extends Editor
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Cache
|
* Cache
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief view class of the editor module
|
* @brief view class of the editor module
|
||||||
*/
|
*/
|
||||||
class editorView extends editor
|
class EditorView extends Editor
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* admin controller class of the layout module
|
* admin controller class of the layout module
|
||||||
*/
|
*/
|
||||||
class layoutAdminController extends layout
|
class LayoutAdminController extends Layout
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Initialization
|
* Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* admin view class of the layout module
|
* admin view class of the layout module
|
||||||
*/
|
*/
|
||||||
class layoutAdminModel extends layout
|
class LayoutAdminModel extends Layout
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* init
|
* init
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* admin view class of the layout module
|
* admin view class of the layout module
|
||||||
*/
|
*/
|
||||||
class layoutAdminView extends layout
|
class LayoutAdminView extends Layout
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Initialization
|
* Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* high class of the layout module
|
* high class of the layout module
|
||||||
*/
|
*/
|
||||||
class layout extends ModuleObject
|
class Layout extends ModuleObject
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Implement if additional tasks are necessary when installing
|
* Implement if additional tasks are necessary when installing
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
* Model class of the layout module
|
* Model class of the layout module
|
||||||
*/
|
*/
|
||||||
class layoutModel extends layout
|
class LayoutModel extends Layout
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Check user layout temp
|
* Check user layout temp
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* admin view class of the layout module
|
* admin view class of the layout module
|
||||||
*/
|
*/
|
||||||
class layoutView extends layout
|
class LayoutView extends Layout
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Initialization
|
* Initialization
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
* @package /modules/menu
|
* @package /modules/menu
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
*/
|
*/
|
||||||
class menuAdminController extends menu
|
class MenuAdminController extends Menu
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* menu number
|
* menu number
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
* @package /modules/menu
|
* @package /modules/menu
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
*/
|
*/
|
||||||
class menuAdminModel extends menu
|
class MenuAdminModel extends Menu
|
||||||
{
|
{
|
||||||
private $menuSrlWithinHome = 0;
|
private $menuSrlWithinHome = 0;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
* @package /modules/menu
|
* @package /modules/menu
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
*/
|
*/
|
||||||
class menuAdminView extends menu
|
class MenuAdminView extends Menu
|
||||||
{
|
{
|
||||||
var $tmpMenu = null;
|
var $tmpMenu = null;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
* @package /modules/menu
|
* @package /modules/menu
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
*/
|
*/
|
||||||
class menu extends ModuleObject
|
class Menu extends ModuleObject
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Implement if additional tasks are necessary when installing
|
* Implement if additional tasks are necessary when installing
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
* @package /modules/menu
|
* @package /modules/menu
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
*/
|
*/
|
||||||
class menuMobile extends moduleObject
|
class MenuMobile extends moduleObject
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Result data list
|
* Result data list
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
class ncenterliteAdminController extends ncenterlite
|
class NcenterliteAdminController extends Ncenterlite
|
||||||
{
|
{
|
||||||
function procNcenterliteAdminInsertConfig()
|
function procNcenterliteAdminInsertConfig()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class ncenterliteAdminModel extends ncenterlite
|
class NcenterliteAdminModel extends Ncenterlite
|
||||||
{
|
{
|
||||||
function getAdminNotifyList()
|
function getAdminNotifyList()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
class ncenterliteAdminView extends ncenterlite
|
class NcenterliteAdminView extends Ncenterlite
|
||||||
{
|
{
|
||||||
function init()
|
function init()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
class ncenterlite extends ModuleObject
|
class Ncenterlite extends ModuleObject
|
||||||
{
|
{
|
||||||
var $_TYPE_DOCUMENT = 'D'; // 댓글
|
var $_TYPE_DOCUMENT = 'D'; // 댓글
|
||||||
var $_TYPE_COMMENT = 'C'; // 댓글의 댓글
|
var $_TYPE_COMMENT = 'C'; // 댓글의 댓글
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class ncenterliteController extends ncenterlite
|
class NcenterliteController extends Ncenterlite
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* List of acts to skip.
|
* List of acts to skip.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class ncenterliteMobile extends ncenterliteView
|
class NcenterliteMobile extends NcenterliteView
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
class ncenterliteModel extends ncenterlite
|
class NcenterliteModel extends Ncenterlite
|
||||||
{
|
{
|
||||||
protected static $_config = NULL;
|
protected static $_config = NULL;
|
||||||
protected static $_user_config = [];
|
protected static $_user_config = [];
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class ncenterliteView extends ncenterlite
|
class NcenterliteView extends Ncenterlite
|
||||||
{
|
{
|
||||||
function init()
|
function init()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief The admin controller class of the poll module
|
* @brief The admin controller class of the poll module
|
||||||
*/
|
*/
|
||||||
class pollAdminController extends poll
|
class PollAdminController extends Poll
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief The admin model class of the poll module
|
* @brief The admin model class of the poll module
|
||||||
*/
|
*/
|
||||||
class pollAdminModel extends poll
|
class PollAdminModel extends Poll
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief The admin view class of the poll module
|
* @brief The admin view class of the poll module
|
||||||
*/
|
*/
|
||||||
class pollAdminView extends poll
|
class PollAdminView extends Poll
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief The parent class of the poll module
|
* @brief The parent class of the poll module
|
||||||
*/
|
*/
|
||||||
class poll extends ModuleObject
|
class Poll extends ModuleObject
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Additional tasks required to accomplish during the installation
|
* @brief Additional tasks required to accomplish during the installation
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief Controller class for poll module
|
* @brief Controller class for poll module
|
||||||
*/
|
*/
|
||||||
class pollController extends poll
|
class PollController extends Poll
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
* @brief The model class for the poll modules
|
* @brief The model class for the poll modules
|
||||||
*/
|
*/
|
||||||
class pollModel extends poll
|
class PollModel extends Poll
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Initialization
|
* @brief Initialization
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
*/
|
*/
|
||||||
class rssAdminController extends rss
|
class RssAdminController extends Rss
|
||||||
{
|
{
|
||||||
function init()
|
function init()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
*/
|
*/
|
||||||
class rssAdminView extends rss
|
class RssAdminView extends Rss
|
||||||
{
|
{
|
||||||
function init()
|
function init()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
*/
|
*/
|
||||||
class rss extends ModuleObject
|
class Rss extends ModuleObject
|
||||||
{
|
{
|
||||||
// Add forwards
|
// Add forwards
|
||||||
protected static $add_forwards = array(
|
protected static $add_forwards = array(
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
*/
|
*/
|
||||||
class rssController extends rss
|
class RssController extends Rss
|
||||||
{
|
{
|
||||||
function init()
|
function init()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
*/
|
*/
|
||||||
class rssModel extends rss
|
class RssModel extends Rss
|
||||||
{
|
{
|
||||||
public static function getRssURL($format = 'rss', $mid = '')
|
public static function getRssURL($format = 'rss', $mid = '')
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* @author NAVER (developers@xpressengine.com)
|
* @author NAVER (developers@xpressengine.com)
|
||||||
*/
|
*/
|
||||||
class rssView extends rss
|
class RssView extends Rss
|
||||||
{
|
{
|
||||||
// Disable gzhandler
|
// Disable gzhandler
|
||||||
public $gzhandler_enable = false;
|
public $gzhandler_enable = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue