ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator 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 }
getInfo()
Provider info (used in administration settings)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
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)
getInitialUserSet(?array $user_ids=null)
Get initial set of users.