mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix capitalization of class names in Page module
This commit is contained in:
parent
002f62ad8f
commit
67b4e7eade
8 changed files with 8 additions and 8 deletions
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief page of the module admin controller class
|
||||
*/
|
||||
class pageAdminController extends page
|
||||
class PageAdminController extends Page
|
||||
{
|
||||
/**
|
||||
* @brief Initialization
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief page admin view of the module class
|
||||
*/
|
||||
class pageAdminView extends page
|
||||
class PageAdminView extends Page
|
||||
{
|
||||
var $module_srl = 0;
|
||||
var $list_count = 20;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief View Action page for the module API processing
|
||||
*/
|
||||
class pageAPI extends page
|
||||
class PageAPI extends Page
|
||||
{
|
||||
/**
|
||||
* @brief Page information
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief high class of the module page
|
||||
*/
|
||||
class page extends ModuleObject
|
||||
class Page extends ModuleObject
|
||||
{
|
||||
/**
|
||||
* @brief Implement if additional tasks are necessary when installing
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief controller class of the document module
|
||||
*/
|
||||
class pageController extends page
|
||||
class PageController extends Page
|
||||
{
|
||||
var $target_path = '';
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
||||
|
||||
class pageMobile extends pageView
|
||||
class PageMobile extends PageView
|
||||
{
|
||||
function _getArticleContent()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief page view class of the module
|
||||
*/
|
||||
class pageView extends page
|
||||
class PageView extends Page
|
||||
{
|
||||
public $module_srl = 0;
|
||||
public $list_count = 20;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief wap class page of the module
|
||||
*/
|
||||
class pageWap extends page
|
||||
class PageWap extends Page
|
||||
{
|
||||
/**
|
||||
* @brief wap procedure method
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue