-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider.xe.php
63 lines (52 loc) · 1.3 KB
/
provider.xe.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
<?php
// XE를 위한 클래스
class socialxeProviderXE extends socialxeProvider{
// 인스턴스
function getInstance(&$sessionManager){
static $instance;
if (!isset($instance)) $instance = new socialxeProviderXE($sessionManager);
return $instance;
}
// 생성자
function socialxeProviderXE(&$sessionManager){
parent::socialxeProvider('xe', $sessionManager);
}
// 로그인 여부 갱신
function syncLogin(){
$logged_info = Context::get('logged_info');
if ($logged_info->member_srl){
$this->logged_info = $logged_info;
$this->setLogin(true);
}
}
// 아이디
function getId(){
if (!$this->isLogged()) return;
return $this->logged_info->user_id;
}
// 닉네임
function getNickName(){
if (!$this->isLogged()) return;
return $this->logged_info->nick_name;
}
// 프로필 이미지
function getProfileImage(){
if (!$this->isLogged()) return;
$oMemberModel = &getModel('member');
$profile_info = $oMemberModel->getProfileImage($this->logged_info->member_srl);
return $profile_info->src;
}
// 링크
function getAuthorLink($id, $nick_name){
return;
}
// 리플 형식 반환
function getReplyPrefix($id, $nick_name){
return $nick_name . '//';
}
// 리플 형식이 포함되었는지 확인
function isContainReply($content){
return false;
}
}
?>