ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ProviderSystemContacts.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\Awareness\User;
20 
22 
28 {
29  protected \ilDBInterface $db;
30  protected \ilLanguage $lng;
31 
32  public function __construct(Container $DIC)
33  {
34  $this->db = $DIC->database();
35  $this->lng = $DIC->language();
36  }
37 
38  public function getProviderId(): string
39  {
40  return "adm_contacts";
41  }
42 
47  public function getTitle(): string
48  {
49  $this->lng->loadLanguageModule("adm");
50  return $this->lng->txt("adm_support_contacts");
51  }
52 
57  public function getInfo(): string
58  {
59  $this->lng->loadLanguageModule("adm");
60  return $this->lng->txt("adm_awrn_support_contacts_info");
61  }
62 
68  public function getInitialUserSet(?array $user_ids = null): array
69  {
70  return \ilSystemSupportContacts::getValidSupportContactIds();
71  }
72 
73  public function isHighlighted(): bool
74  {
75  return false;
76  }
77 }
database()
Get interface to the Database.
Definition: Container.php:38
getInfo()
Provider info (used in administration settings)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
global $DIC
Definition: feed.php:28
getInitialUserSet(?array $user_ids=null)
Get initial set of users.
language()
Get interface to the i18n service.
Definition: Container.php:86
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTitle()
Provider title (used in awareness overlay and in administration settings)