ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilProfileUserPrompt.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  protected ?string $last_prompt = null; // timestamp
26  protected ?string $first_login = null; // timestamp
27  protected int $user_id;
28 
29  public function __construct(
30  int $user_id,
31  ?string $last_prompt,
32  ?string $first_login
33  ) {
34  $this->user_id = $user_id;
35  $this->last_prompt = $last_prompt;
36  $this->first_login = $first_login;
37  }
38 
39  public function getUserId(): int
40  {
41  return $this->user_id;
42  }
43 
44  public function getLastPrompt(): ?string
45  {
46  return $this->last_prompt;
47  }
48 
49  public function getFirstLogin(): ?string
50  {
51  return $this->first_login;
52  }
53 }
__construct(int $user_id, ?string $last_prompt, ?string $first_login)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...