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.admin.view.php
291 lines (236 loc) · 9.42 KB
/
board.admin.view.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<?php
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* @class boardAdminView
* @author NAVER (developers@xpressengine.com)
* @brief board module admin view class
**/
class boardAdminView extends board {
/**
* @brief initialization
*
* board module can be divided into general use and admin use.\n
**/
function init() {
// check module_srl is existed or not
$module_srl = Context::get('module_srl');
if(!$module_srl && $this->module_srl) {
$module_srl = $this->module_srl;
Context::set('module_srl', $module_srl);
}
// generate module model object
$oModuleModel = getModel('module');
// get the module infomation based on the module_srl
if($module_srl) {
$module_info = $oModuleModel->getModuleInfoByModuleSrl($module_srl);
if(!$module_info) {
Context::set('module_srl','');
$this->act = 'list';
} else {
ModuleModel::syncModuleToSite($module_info);
$this->module_info = $module_info;
$this->module_info->use_status = explode('|@|', $module_info->use_status);
Context::set('module_info',$module_info);
}
}
if($module_info && $module_info->module != 'board') return $this->stop("msg_invalid_request");
// get the module category list
$module_category = $oModuleModel->getModuleCategories();
Context::set('module_category', $module_category);
$security = new Security();
$security->encodeHTML('module_info.');
$security->encodeHTML('module_category..');
// setup template path (board admin panel templates is resided in the tpl folder)
$template_path = sprintf("%stpl/",$this->module_path);
$this->setTemplatePath($template_path);
// install order (sorting) options
foreach($this->order_target as $key) $order_target[$key] = Context::getLang($key);
$order_target['list_order'] = Context::getLang('document_srl');
$order_target['update_order'] = Context::getLang('last_update');
Context::set('order_target', $order_target);
}
/**
* @brief display the board module admin contents
**/
function dispBoardAdminContent() {
// setup the board module general information
$args = new stdClass();
$args->sort_index = "module_srl";
$args->page = Context::get('page');
$args->list_count = 20;
$args->page_count = 10;
$args->s_module_category_srl = Context::get('module_category_srl');
$search_target = Context::get('search_target');
$search_keyword = Context::get('search_keyword');
switch ($search_target){
case 'mid':
$args->s_mid = $search_keyword;
break;
case 'browser_title':
$args->s_browser_title = $search_keyword;
break;
}
$output = executeQueryArray('board.getBoardList', $args);
ModuleModel::syncModuleToSite($output->data);
// get the skins path
$oModuleModel = getModel('module');
$skin_list = $oModuleModel->getSkins($this->module_path);
Context::set('skin_list',$skin_list);
$mskin_list = $oModuleModel->getSkins($this->module_path, "m.skins");
Context::set('mskin_list', $mskin_list);
// get the layouts path
$oLayoutModel = getModel('layout');
$layout_list = $oLayoutModel->getLayoutList();
Context::set('layout_list', $layout_list);
$mobile_layout_list = $oLayoutModel->getLayoutList(0,"M");
Context::set('mlayout_list', $mobile_layout_list);
$oModuleAdminModel = getAdminModel('module');
$selected_manage_content = $oModuleAdminModel->getSelectedManageHTML($this->xml_info->grant);
Context::set('selected_manage_content', $selected_manage_content);
// use context::set to setup variables on the templates
Context::set('total_count', $output->total_count);
Context::set('total_page', $output->total_page);
Context::set('page', $output->page);
Context::set('board_list', $output->data);
Context::set('page_navigation', $output->page_navigation);
$security = new Security();
$security->encodeHTML('board_list..browser_title','board_list..mid');
$security->encodeHTML('skin_list..title','mskin_list..title');
$security->encodeHTML('layout_list..title','layout_list..layout');
$security->encodeHTML('mlayout_list..title','mlayout_list..layout');
// 템플릿 파일 지정
$this->setTemplateFile('index');
}
/**
* @brief display the selected board module admin information
**/
function dispBoardAdminBoardInfo() {
$this->dispBoardAdminInsertBoard();
}
/**
* @brief display the module insert form
**/
function dispBoardAdminInsertBoard() {
if(!in_array($this->module_info->module, array('admin', 'board','blog','guestbook'))) {
return $this->alertMessage('msg_invalid_request');
}
// get the skins list
$oModuleModel = getModel('module');
$skin_list = $oModuleModel->getSkins($this->module_path);
Context::set('skin_list',$skin_list);
$mskin_list = $oModuleModel->getSkins($this->module_path, "m.skins");
Context::set('mskin_list', $mskin_list);
// get the layouts list
$oLayoutModel = getModel('layout');
$layout_list = $oLayoutModel->getLayoutList();
Context::set('layout_list', $layout_list);
$mobile_layout_list = $oLayoutModel->getLayoutList(0,"M");
Context::set('mlayout_list', $mobile_layout_list);
$security = new Security();
$security->encodeHTML('skin_list..title','mskin_list..title');
$security->encodeHTML('layout_list..title','layout_list..layout');
$security->encodeHTML('mlayout_list..title','mlayout_list..layout');
// get document status list
$oDocumentModel = getModel('document');
$documentStatusList = $oDocumentModel->getStatusNameList();
Context::set('document_status_list', $documentStatusList);
$oBoardModel = getModel('board');
// setup the extra vaiables
Context::set('extra_vars', $oBoardModel->getDefaultListConfig($this->module_info->module_srl));
// setup the list config (install the default value if there is no list config)
Context::set('list_config', $oBoardModel->getListConfig($this->module_info->module_srl));
$security = new Security();
$security->encodeHTML('extra_vars..name','list_config..name');
// set the template file
$this->setTemplateFile('board_insert');
}
/**
* @brief display the additional setup panel
* additonal setup panel is for connecting the service modules with other modules
**/
function dispBoardAdminBoardAdditionSetup() {
// sice content is obtained from other modules via call by reference, declare it first
$content = '';
// get the addtional setup trigger
// the additional setup triggers can be used in many modules
$output = ModuleHandler::triggerCall('module.dispAdditionSetup', 'before', $content);
$output = ModuleHandler::triggerCall('module.dispAdditionSetup', 'after', $content);
Context::set('setup_content', $content);
// setup the template file
$this->setTemplateFile('addition_setup');
}
/**
* @brief display the board mdoule delete page
**/
function dispBoardAdminDeleteBoard() {
if(!Context::get('module_srl')) return $this->dispBoardAdminContent();
if(!in_array($this->module_info->module, array('admin', 'board','blog','guestbook'))) {
return $this->alertMessage('msg_invalid_request');
}
$module_info = Context::get('module_info');
$oDocumentModel = getModel('document');
$document_count = $oDocumentModel->getDocumentCount($module_info->module_srl);
$module_info->document_count = $document_count;
Context::set('module_info',$module_info);
$security = new Security();
$security->encodeHTML('module_info..mid','module_info..module','module_info..document_count');
// setup the template file
$this->setTemplateFile('board_delete');
}
/**
* @brief display category information
**/
function dispBoardAdminCategoryInfo() {
$oDocumentModel = getModel('document');
$category_content = $oDocumentModel->getCategoryHTML($this->module_info->module_srl);
Context::set('category_content', $category_content);
Context::set('module_info', $this->module_info);
$this->setTemplateFile('category_list');
}
/**
* @brief display the grant information
**/
function dispBoardAdminGrantInfo() {
// get the grant infotmation from admin module
$oModuleAdminModel = getAdminModel('module');
$grant_content = $oModuleAdminModel->getModuleGrantHTML($this->module_info->module_srl, $this->xml_info->grant);
Context::set('grant_content', $grant_content);
$this->setTemplateFile('grant_list');
}
/**
* @brief display extra variables
**/
function dispBoardAdminExtraVars() {
$oDocumentAdminModel = getModel('document');
$extra_vars_content = $oDocumentAdminModel->getExtraVarsHTML($this->module_info->module_srl);
Context::set('extra_vars_content', $extra_vars_content);
$this->setTemplateFile('extra_vars');
}
/**
* @brief display the module skin information
**/
function dispBoardAdminSkinInfo() {
// get the grant infotmation from admin module
$oModuleAdminModel = getAdminModel('module');
$skin_content = $oModuleAdminModel->getModuleSkinHTML($this->module_info->module_srl);
Context::set('skin_content', $skin_content);
$this->setTemplateFile('skin_info');
}
/**
* Display the module mobile skin information
**/
function dispBoardAdminMobileSkinInfo() {
// get the grant infotmation from admin module
$oModuleAdminModel = getAdminModel('module');
$skin_content = $oModuleAdminModel->getModuleMobileSkinHTML($this->module_info->module_srl);
Context::set('skin_content', $skin_content);
$this->setTemplateFile('skin_info');
}
/**
* @brief board module message
**/
function alertMessage($message) {
$script = sprintf('<script> xAddEventListener(window,"load", function() { alert("%s"); } );</script>', Context::getLang($message));
Context::addHtmlHeader( $script );
}
}