ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
ilProfileUserPrompt Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Collaboration diagram for ilProfileUserPrompt:

Public Member Functions

 __construct (int $user_id, ?string $last_prompt, ?string $first_login)
 
 getUserId ()
 
 getLastPrompt ()
 
 getFirstLogin ()
 

Protected Attributes

string $last_prompt = null
 
string $first_login = null
 
int $user_id
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning User prompt dates

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 23 of file class.ilProfileUserPrompt.php.

Constructor & Destructor Documentation

◆ __construct()

ilProfileUserPrompt::__construct ( int  $user_id,
?string  $last_prompt,
?string  $first_login 
)

Definition at line 29 of file class.ilProfileUserPrompt.php.

References $first_login, $last_prompt, and $user_id.

33  {
34  $this->user_id = $user_id;
35  $this->last_prompt = $last_prompt;
36  $this->first_login = $first_login;
37  }

Member Function Documentation

◆ getFirstLogin()

ilProfileUserPrompt::getFirstLogin ( )

Definition at line 49 of file class.ilProfileUserPrompt.php.

References $first_login.

49  : ?string
50  {
51  return $this->first_login;
52  }

◆ getLastPrompt()

ilProfileUserPrompt::getLastPrompt ( )

Definition at line 44 of file class.ilProfileUserPrompt.php.

References $last_prompt.

44  : ?string
45  {
46  return $this->last_prompt;
47  }

◆ getUserId()

ilProfileUserPrompt::getUserId ( )

Definition at line 39 of file class.ilProfileUserPrompt.php.

References $user_id.

39  : int
40  {
41  return $this->user_id;
42  }

Field Documentation

◆ $first_login

string ilProfileUserPrompt::$first_login = null
protected

Definition at line 26 of file class.ilProfileUserPrompt.php.

Referenced by __construct(), and getFirstLogin().

◆ $last_prompt

string ilProfileUserPrompt::$last_prompt = null
protected

Definition at line 25 of file class.ilProfileUserPrompt.php.

Referenced by __construct(), and getLastPrompt().

◆ $user_id

int ilProfileUserPrompt::$user_id
protected

Definition at line 27 of file class.ilProfileUserPrompt.php.

Referenced by __construct(), and getUserId().


The documentation for this class was generated from the following file: