Fix capitalization of class names

This commit is contained in:
Kijin Sung 2023-10-02 22:59:25 +09:00
parent 7444bc3f1d
commit 866f9c670d
26 changed files with 26 additions and 26 deletions

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The admin controller class of the session module * @brief The admin controller class of the session module
*/ */
class sessionAdminController extends session class SessionAdminController extends Session
{ {
/** /**
* @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 session module * @brief The admin view class of the session module
*/ */
class sessionAdminView extends session class SessionAdminView extends Session
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -8,7 +8,7 @@
* *
* The session management class * The session management class
*/ */
class session extends ModuleObject class Session extends ModuleObject
{ {
var $lifetime = 18000; var $lifetime = 18000;
var $session_started = false; var $session_started = false;

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The controller class of the session module * @brief The controller class of the session module
*/ */
class sessionController extends session class SessionController extends Session
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The Model class of the session module * @brief The Model class of the session module
*/ */
class sessionModel extends session class SessionModel extends Session
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The admin controller class of the spamfilter module * @brief The admin controller class of the spamfilter module
*/ */
class spamfilterAdminController extends spamfilter class SpamfilterAdminController extends Spamfilter
{ {
/** /**
* @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 spamfilter module * @brief The admin view class of the spamfilter module
*/ */
class spamfilterAdminView extends spamfilter class SpamfilterAdminView extends Spamfilter
{ {
/** /**
* @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 spamfilter module * @brief The parent class of the spamfilter module
*/ */
class spamfilter extends ModuleObject class Spamfilter 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 The controller class for the spamfilter module * @brief The controller class for the spamfilter module
*/ */
class spamfilterController extends spamfilter class SpamfilterController extends Spamfilter
{ {
/** /**
* List of actions to use CAPTCHA. * List of actions to use CAPTCHA.

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief The Model class of the spamfilter module * @brief The Model class of the spamfilter module
*/ */
class spamfilterModel extends spamfilter class SpamfilterModel extends Spamfilter
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief admin controller class of the tag module * @brief admin controller class of the tag module
*/ */
class tagAdminController extends tag class TagAdminController extends Tag
{ {
/** /**
* Save admin config. * Save admin config.

View file

@ -1,6 +1,6 @@
<?php <?php
class tagAdminView extends tag class TagAdminView extends Tag
{ {
public function dispTagAdminConfig() public function dispTagAdminConfig()
{ {

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief high class of the tag module * @brief high class of the tag module
*/ */
class tag extends ModuleObject class Tag extends ModuleObject
{ {
/** /**
* @brief Implement if additional tasks are necessary when installing * @brief Implement if additional tasks are necessary when installing

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief tag module's controller class * @brief tag module's controller class
*/ */
class tagController extends tag class TagController extends Tag
{ {
/** /**
* Parse tags. * Parse tags.

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief tag model class of the module * @brief tag model class of the module
*/ */
class tagModel extends tag class TagModel extends Tag
{ {
/** /**
* Separator regexp cache * Separator regexp cache

View file

@ -8,7 +8,7 @@
* @package /modules/trash * @package /modules/trash
* @version 0.1 * @version 0.1
*/ */
class trashAdminController extends trash class TrashAdminController extends Trash
{ {
/** /**
* object insert to trash * object insert to trash

View file

@ -8,7 +8,7 @@
* @package /modules/trash * @package /modules/trash
* @version 0.1 * @version 0.1
*/ */
class trashAdminView extends trash class TrashAdminView extends Trash
{ {
/** /**
* Initialization * Initialization

View file

@ -10,7 +10,7 @@ require_once(RX_BASEDIR.'modules/trash/model/TrashVO.php');
* @package /modules/trash * @package /modules/trash
* @version 0.1 * @version 0.1
*/ */
class trash extends ModuleObject class Trash 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/trash * @package /modules/trash
* @version 0.1 * @version 0.1
*/ */
class trashController extends trash class TrashController extends Trash
{ {
} }

View file

@ -8,7 +8,7 @@
* @package /modules/trash * @package /modules/trash
* @version 0.1 * @version 0.1
*/ */
class trashModel extends trash class TrashModel extends Trash
{ {
private static $config = NULL; private static $config = NULL;

View file

@ -8,7 +8,7 @@
* @package /modules/trash * @package /modules/trash
* @version 0.1 * @version 0.1
*/ */
class trashView extends trash class TrashView extends Trash
{ {
/** /**
* Initialization * Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief admin view class for widget modules * @brief admin view class for widget modules
*/ */
class widgetAdminView extends widget class WidgetAdminView extends Widget
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief widget module's high class * @brief widget module's high class
*/ */
class widget extends ModuleObject class Widget extends ModuleObject
{ {
/** /**
* @brief Implement if additional tasks are necessary when installing * @brief Implement if additional tasks are necessary when installing

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief Controller class for widget modules * @brief Controller class for widget modules
*/ */
class widgetController extends widget class WidgetController extends Widget
{ {
// The results are not widget modify/delete and where to use the flag for // The results are not widget modify/delete and where to use the flag for
// layout_javascript_mode include all the results into the javascript mode Sikkim // layout_javascript_mode include all the results into the javascript mode Sikkim

View file

@ -6,7 +6,7 @@
* @version 0.1 * @version 0.1
* @brief Model class for widget modules * @brief Model class for widget modules
*/ */
class widgetModel extends widget class WidgetModel extends Widget
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief View class of the widget modules * @brief View class of the widget modules
*/ */
class widgetView extends widget class WidgetView extends Widget
{ {
/** /**
* @brief Initialization * @brief Initialization