mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
Fix capitalization of class names in Board module
This commit is contained in:
parent
67b4e7eade
commit
b562df8959
10 changed files with 10 additions and 10 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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'); ///< 검색 옵션
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue