Home
last modified time | relevance | path

Searched refs:lastpm (Results 1 – 2 of 2) sorted by relevance

/plugin/authucenter/lib/uc_client/control/
H A Dpm.php49 $lastpm = $_ENV['pm']->lastpm($uid);
52 $lastpm['lastsummary'] = $this->uccode->complie($lastpm['lastsummary']);
53 …te' => $lastpm['lastdateline'], 'lastmsgfromid' => $lastpm['lastauthorid'], 'lastmsgfrom' => $last…
/plugin/authucenter/lib/uc_client/model/
H A Dpm.php151 function lastpm($uid) { function in pmmodel
152 …$lastpm = $this->db->fetch_first("SELECT * FROM ".UC_DBTABLEPRE."pm_members m LEFT JOIN ".UC_DBTAB…
153 $lastmessage = unserialize($lastpm['lastmessage']);
155 $lastpm['lastauthorid'] = $lastmessage['lastauthorid'];
156 $lastpm['lastauthor'] = $lastmessage['lastauthor'];
157 $lastpm['lastsummary'] = $lastmessage['lastsummary'];
159 $lastpm['lastauthorid'] = $lastmessage['firstauthorid'];
160 $lastpm['lastauthor'] = $lastmessage['firstauthor'];
161 $lastpm['lastsummary'] = $lastmessage['firstsummary'];
163 return $lastpm;