ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilUserProfilePromptService.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 
16 {
20  public function __construct()
21  {
22  }
23 
28  public function data()
29  {
30  return new ilUserProfilePromptDataGateway();
31  }
32 
41  public function settings(int $mode, int $days, array $info_texts, array $prompt_texts)
42  {
43  return new ilProfilePromptSettings(
44  $mode,
45  $days,
46  $info_texts,
47  $prompt_texts
48  );
49  }
50 }
User profile prompt subservice.
settings(int $mode, int $days, array $info_texts, array $prompt_texts)
Get a settings object.