Fix capitalization of class names in Board module

This commit is contained in:
Kijin Sung 2023-06-19 13:49:20 +09:00
parent 67b4e7eade
commit b562df8959
10 changed files with 10 additions and 10 deletions

View file

@ -7,7 +7,7 @@
* @brief board module admin controller class * @brief board module admin controller class
**/ **/
class boardAdminController extends board { class BoardAdminController extends Board {
/** /**
* @brief initialization * @brief initialization

View file

@ -9,7 +9,7 @@
* @package /modules/board * @package /modules/board
* @version 0.1 * @version 0.1
*/ */
class boardAdminModel extends board class BoardAdminModel extends Board
{ {
/** /**
* Initialization * Initialization

View file

@ -7,7 +7,7 @@
* @brief board module admin view class * @brief board module admin view class
**/ **/
class boardAdminView extends board { class BoardAdminView extends Board {
/** /**
* @brief initialization * @brief initialization

View file

@ -7,7 +7,7 @@
* @brief board module View Action에 대한 API 처리 * @brief board module View Action에 대한 API 처리
**/ **/
class boardAPI extends board class BoardAPI extends Board
{ {
/** /**
* @brief notice list * @brief notice list

View file

@ -7,7 +7,7 @@
* @brief board module high class * @brief board module high class
**/ **/
class board extends ModuleObject class Board extends ModuleObject
{ {
var $search_option = array('title_content','title','content','comment','user_name','nick_name','user_id','tag'); ///< 검색 옵션 var $search_option = array('title_content','title','content','comment','user_name','nick_name','user_id','tag'); ///< 검색 옵션

View file

@ -7,7 +7,7 @@
* @brief board module Controller class * @brief board module Controller class
**/ **/
class boardController extends board class BoardController extends Board
{ {
/** /**
* @brief initialization * @brief initialization

View file

@ -1,7 +1,7 @@
<?php <?php
/* Copyright (C) NAVER <http://www.navercorp.com> */ /* Copyright (C) NAVER <http://www.navercorp.com> */
class boardMobile extends boardView class BoardMobile extends BoardView
{ {
function getBoardCommentPage() function getBoardCommentPage()
{ {

View file

@ -6,7 +6,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief board module Model class * @brief board module Model class
**/ **/
class boardModel extends module class BoardModel extends Board
{ {
/** /**
* @brief initialization * @brief initialization

View file

@ -6,7 +6,7 @@
* @author NAVER (developers@xpressengine.com) * @author NAVER (developers@xpressengine.com)
* @brief board module View class * @brief board module View class
**/ **/
class boardView extends board class BoardView extends Board
{ {
var $listConfig; var $listConfig;
var $columnList; var $columnList;

View file

@ -7,7 +7,7 @@
* @brief board module WAP class * @brief board module WAP class
**/ **/
class boardWAP extends board class BoardWAP extends Board
{ {
/** /**
* @brief wap procedure method * @brief wap procedure method