This repository has been archived by the owner on Feb 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
board.model.php
93 lines (82 loc) · 2.29 KB
/
board.model.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class boardModel
* @author NAVER (developers@xpressengine.com)
* @brief board module Model class
**/
class boardModel extends module
{
/**
* @brief initialization
**/
function init()
{
}
/**
* @brief get the list configuration
**/
function getListConfig($module_srl)
{
$oModuleModel = getModel('module');
$oDocumentModel = getModel('document');
// get the list config value, if it is not exitsted then setup the default value
$list_config = $oModuleModel->getModulePartConfig('board', $module_srl);
if(!$list_config || !count($list_config))
{
$list_config = array( 'no', 'title', 'nick_name','regdate','readed_count');
}
// get the extra variables
$inserted_extra_vars = $oDocumentModel->getExtraKeys($module_srl);
foreach($list_config as $key)
{
if(preg_match('/^([0-9]+)$/',$key))
{
if($inserted_extra_vars[$key])
{
$output['extra_vars'.$key] = $inserted_extra_vars[$key];
}
else
{
continue;
}
}
else
{
$output[$key] = new ExtraItem($module_srl, -1, Context::getLang($key), $key, 'N', 'N', 'N', null);
}
}
return $output;
}
/**
* @brief return the default list configration value
**/
function getDefaultListConfig($module_srl)
{
// add virtual srl, title, registered date, update date, nickname, ID, name, readed count, voted count etc.
$virtual_vars = array( 'no', 'title', 'regdate', 'last_update', 'last_post', 'nick_name',
'user_id', 'user_name', 'readed_count', 'voted_count', 'blamed_count', 'thumbnail', 'summary', 'comment_status');
foreach($virtual_vars as $key)
{
$extra_vars[$key] = new ExtraItem($module_srl, -1, Context::getLang($key), $key, 'N', 'N', 'N', null);
}
// get the extra variables from the document model
$oDocumentModel = getModel('document');
$inserted_extra_vars = $oDocumentModel->getExtraKeys($module_srl);
if(count($inserted_extra_vars))
{
foreach($inserted_extra_vars as $obj)
{
$extra_vars['extra_vars'.$obj->idx] = $obj;
}
}
return $extra_vars;
}
/**
* @brief return module name in sitemap
**/
function triggerModuleListInSitemap(&$obj)
{
array_push($obj, 'board');
}
}