コード例 #1
0
ファイル: StationRequest.php プロジェクト: Lavoaster/PVLive
 public function __construct()
 {
     $this->timestamp = time();
     $this->ip = $_SERVER['REMOTE_ADDR'];
     if (\DF\Auth::isLoggedIn()) {
         $user = \DF\Auth::getLoggedInUser();
         $this->user = $user;
     }
 }
コード例 #2
0
ファイル: SongVote.php プロジェクト: Lavoaster/PVLive
 public function __construct()
 {
     $this->ip = self::getIp();
     $this->timestamp = time();
     if (\DF\Auth::isLoggedIn()) {
         $user = \DF\Auth::getLoggedInUser();
         $this->user = $user;
     }
 }