ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilProfileUserPrompt.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2018 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12{
16 protected $last_prompt; // timestamp
17
21 protected $first_login; // timestamp
22
26 protected $user_id;
27
32 {
33 $this->user_id = $user_id;
34 $this->last_prompt = $last_prompt;
35 $this->first_login = $first_login;
36 }
37
41 public function getUserId()
42 {
43 return $this->user_id;
44 }
45
49 public function getLastPrompt()
50 {
51 return $this->last_prompt;
52 }
53
57 public function getFirstLogin()
58 {
59 return $this->first_login;
60 }
61}
An exception for terminatinating execution or to throw for unit testing.
__construct($user_id, $last_prompt, $first_login)
Constructor.