mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
73 lines
938 B
PHP
73 lines
938 B
PHP
<?php
|
|
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
|
|
|
/**
|
|
* @class board
|
|
* @author NAVER (developers@xpressengine.com)
|
|
* @brief board module high class
|
|
**/
|
|
|
|
class Board extends ModuleObject
|
|
{
|
|
/**
|
|
* Default search columns
|
|
*/
|
|
public $search_option = [
|
|
'title_content',
|
|
'title',
|
|
'content',
|
|
'comment',
|
|
'user_name',
|
|
'nick_name',
|
|
'user_id',
|
|
'tag',
|
|
];
|
|
|
|
/**
|
|
* Default sort columns
|
|
*/
|
|
public $order_target = [
|
|
'list_order',
|
|
'update_order',
|
|
'regdate',
|
|
'voted_count',
|
|
'blamed_count',
|
|
'readed_count',
|
|
'comment_count',
|
|
'title',
|
|
'nick_name',
|
|
'user_name',
|
|
'user_id',
|
|
];
|
|
|
|
/**
|
|
* Default values
|
|
*/
|
|
public $skin = 'default';
|
|
public $list_count = 20;
|
|
public $page_count = 10;
|
|
public $category_list;
|
|
|
|
/**
|
|
* Callback functions for autoinstall
|
|
*/
|
|
function moduleInstall()
|
|
{
|
|
|
|
}
|
|
|
|
function checkUpdate()
|
|
{
|
|
|
|
}
|
|
|
|
function moduleUpdate()
|
|
{
|
|
|
|
}
|
|
|
|
function moduleUninstall()
|
|
{
|
|
|
|
}
|
|
}
|