-
Notifications
You must be signed in to change notification settings - Fork 4
/
beluxe.wap.php
170 lines (144 loc) · 5.38 KB
/
beluxe.wap.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
<?php
/**
* @class beluxeWAP
* @author phiDel ([email protected])
* @brief WAP class of the BoardDX module
*/
class beluxeWAP extends beluxe
{
/** @brief wap procedure method **/
function procWAP(&$pMobile)
{
$oMi = $this->module_info;
// 권한 체크
if(!$this->grant->list || (!$this->grant->manager && $oMi->consultation == 'Y')) return $pMobile->setContent(Context::getLang('msg_not_permitted'));
// document model 객체 생성
$cmDocument = &getModel('document');
// 선택된 게시글이 있을 경우
$doc_srl = Context::get('document_srl');
if($doc_srl)
{
$oDocIfo = $cmDocument->getDocument($doc_srl);
if($oDocIfo->isExists())
{
// 권한 확인
if(!$this->grant->view) return $pMobile->setContent(Context::getLang('msg_not_permitted'));
// 글 제목 설정
Context::setBrowserTitle($oDocIfo->getTitleText());
// 댓글 보기 일 경우
if($this->act=='dispBoardContentCommentList')
{
$cmComment = &getModel('comment');
$out = $cmComment->getCommentList($oDocIfo->document_srl, 0, FALSE, $oDocIfo->getCommentCount());
$content = '';
if(count($out->data))
{
foreach($out->data as $key => $val)
{
$oComNew = new commentItem();
$oComNew->setAttribute($val);
if(!$oComNew->isAccessible()) continue;
$content .= "<b>".$oComNew->getNickName()."</b> (".$oComNew->getRegdate("Y-m-d").")<br>\r\n".$oComNew->getContent(FALSE,FALSE)."<br>\r\n";
}
}
// 내용 설정
$pMobile->setContent( $content );
// 상위 페이지를 목록으로 돌아가기로 지정
$pMobile->setUpperUrl( getUrl('act',''), 'Go upper' );
}
else
{
// 댓글 보기가 아니면 글 보여줌
if(!$oDocIfo->isNotice())
{
// 글 보기 권한을 체크해서 권한이 없으면 빈문서
$is_empty = !$this->grant->view && !$oDocIfo->isGranted();
// 상담기능이 사용되고 사용자의 글도 아니면 빈문서
if(!$is_empty && $oMi->consultation == 'Y') $is_empty = !$oDocIfo->isGranted();
// 블라인드 기능이 사용되면
if(!$is_empty && !$this->grant->manager && $oMi->use_blind == 'Y') {
$cmThis = &getModel(__XEFM_NAME__);
$is_empty = $cmThis->isBlind($doc_srl);
}
}
else
{
// 공지는 누구나 볼 수 있게
$this->grant->view = TRUE;
}
// 권한이 없으면 빈문서
if($is_empty)
{
$oDocIfo = $cmDocument->getDocument(0, FALSE, FALSE);
$content = Context::getLang('msg_not_permitted');
}
else
{
$is_read = true;
$is_grant = $oDocIfo->isGranted();
$is_secret = $oDocIfo->isSecret();
if(!$is_secret && !$is_grant && $oMi->use_point_type != 'A' && $oMi->use_restrict_view!='N')
{
if(!$cmThis) $cmThis = &getModel(__XEFM_NAME__);
$is_read = $cmThis->isRead($doc_srl, $mbr_srl);
}
if(!$is_read)
{
$content = sprintf(Context::getLang('msg_restricted_view'), 0);
}
else
{
// 내용 상단에 정보 출력 (댓글 보기 링크 포함)
$content = '<b>'.$oDocIfo->getNickName().'</b> ('.$oDocIfo->getRegdate("Y-m-d").")<br>\r\n";
$content .= Context::getLang('replies').' : <a href="'.getUrl('act','dispBoardContentCommentList').'">'.$oDocIfo->getCommentCount().'</a><br>'."\r\n";
// 내용 지정 (태그를 모두 제거한 내용을 설정)
$content .= strip_tags(str_replace('<p>','<br> ',$oDocIfo->getContent(FALSE,FALSE,FALSE)),'<br><b><i><u><em><small><strong><big>');
}
// 조회수 증가
if($is_read && (!$is_secret || $is_grant)) $oDocIfo->updateReadedCount();
}
// 내용 설정
$pMobile->setContent( $content );
// 상위 페이지를 목록으로 돌아가기로 지정
$pMobile->setUpperUrl( getUrl('document_srl',''), Context::getLang('cmd_list') );
}
return;
}
}
// 게시글 목록
$args->module_srl = $this->module_srl;
$args->page = Context::get('page');
$args->list_count = 9;
$df_navi = explode('|@|',$oMi->default_type_option);
$args->sort_index = $df_navi[0]?$df_navi[0]:'list_order';
$args->order_type = $df_navi[1]?$df_navi[1]:'asc';
$out = $cmDocument->getDocumentList($args, TRUE);
$doc_list = $out->data;
$page_navi = $out->page_navigation;
$_tmp = array();
if($doc_list && count($doc_list))
{
foreach($doc_list as $key => $val)
{
$href = getUrl('mid',$_GET['mid'],'document_srl',$val->document_srl);
$obj = NULL;
$obj['href'] = $val->getPermanentUrl();
$title = htmlspecialchars($val->getTitleText());
if($val->getCommentCount()) $title .= ' ['.$val->getCommentCount().']';
$obj['link'] = $obj['text'] = '['.$val->getNickName().'] '.$title;
$_tmp[] = $obj;
}
$pMobile->setChilds($_tmp);
}
$last_page = $page_navi->last_page;
$page = (int)Context::get('page');
if(!$page) $page = 1;
// next/prevUrl 지정
if($page>1) $pMobile->setPrevUrl(getUrl('mid',$_GET['mid'],'page',$page-1), sprintf('%s (%d/%d)', Context::getLang('cmd_prev'), $page-1, $last_page));
if($page<$last_page) $pMobile->setNextUrl(getUrl('mid',$_GET['mid'],'page',$page+1), sprintf('%s (%d/%d)', Context::getLang('cmd_next'), $page+1, $last_page));
$pMobile->mobilePage = $page;
$pMobile->totalPage = $last_page;
}
}
/* End of file beluxe.wap.php */
/* Location: ./modules/beluxe/beluxe.wap.php */