Fix capitalization of class names in Page module

This commit is contained in:
Kijin Sung 2023-06-19 13:44:08 +09:00
parent 002f62ad8f
commit 67b4e7eade
8 changed files with 8 additions and 8 deletions

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief page of the module admin controller class * @brief page of the module admin controller class
*/ */
class pageAdminController extends page class PageAdminController extends Page
{ {
/** /**
* @brief Initialization * @brief Initialization

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief page admin view of the module class * @brief page admin view of the module class
*/ */
class pageAdminView extends page class PageAdminView extends Page
{ {
var $module_srl = 0; var $module_srl = 0;
var $list_count = 20; var $list_count = 20;

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief View Action page for the module API processing * @brief View Action page for the module API processing
*/ */
class pageAPI extends page class PageAPI extends Page
{ {
/** /**
* @brief Page information * @brief Page information

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief high class of the module page * @brief high class of the module page
*/ */
class page extends ModuleObject class Page 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 of the document module * @brief controller class of the document module
*/ */
class pageController extends page class PageController extends Page
{ {
var $target_path = ''; var $target_path = '';

View file

@ -1,7 +1,7 @@
<?php <?php
/* Copyright (C) NAVER <http://www.navercorp.com> */ /* Copyright (C) NAVER <http://www.navercorp.com> */
class pageMobile extends pageView class PageMobile extends PageView
{ {
function _getArticleContent() function _getArticleContent()
{ {

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief page view class of the module * @brief page view class of the module
*/ */
class pageView extends page class PageView extends Page
{ {
public $module_srl = 0; public $module_srl = 0;
public $list_count = 20; public $list_count = 20;

View file

@ -5,7 +5,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief wap class page of the module * @brief wap class page of the module
*/ */
class pageWap extends page class PageWap extends Page
{ {
/** /**
* @brief wap procedure method * @brief wap procedure method