Fix capitalization of class names

This commit is contained in:
Kijin Sung 2023-10-02 22:55:41 +09:00
parent e81d0500eb
commit 7444bc3f1d
38 changed files with 38 additions and 38 deletions

View file

@ -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

View file

@ -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

View file

@ -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)
{ {

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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;

View file

@ -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;

View file

@ -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

View file

@ -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

View file

@ -1,5 +1,5 @@
<?php <?php
class ncenterliteAdminController extends ncenterlite class NcenterliteAdminController extends Ncenterlite
{ {
function procNcenterliteAdminInsertConfig() function procNcenterliteAdminInsertConfig()
{ {

View file

@ -1,6 +1,6 @@
<?php <?php
class ncenterliteAdminModel extends ncenterlite class NcenterliteAdminModel extends Ncenterlite
{ {
function getAdminNotifyList() function getAdminNotifyList()
{ {

View file

@ -1,5 +1,5 @@
<?php <?php
class ncenterliteAdminView extends ncenterlite class NcenterliteAdminView extends Ncenterlite
{ {
function init() function init()
{ {

View file

@ -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'; // 댓글의 댓글

View file

@ -1,6 +1,6 @@
<?php <?php
class ncenterliteController extends ncenterlite class NcenterliteController extends Ncenterlite
{ {
/** /**
* List of acts to skip. * List of acts to skip.

View file

@ -1,6 +1,6 @@
<?php <?php
class ncenterliteMobile extends ncenterliteView class NcenterliteMobile extends NcenterliteView
{ {
} }

View file

@ -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 = [];

View file

@ -1,6 +1,6 @@
<?php <?php
class ncenterliteView extends ncenterlite class NcenterliteView extends Ncenterlite
{ {
function init() function init()
{ {

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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()
{ {

View file

@ -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()
{ {

View file

@ -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(

View file

@ -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()
{ {

View file

@ -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 = '')
{ {

View file

@ -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;