ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSystemSupportContactsGUI.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected \ILIAS\DI\UIServices $ui;
30  protected $tpl;
31 
35  protected $lng;
36 
37  protected $ctrl;
38 
42  public function __construct()
43  {
44  global $DIC;
45 
46  $ilCtrl = $DIC->ctrl();
47  $tpl = $DIC["tpl"];
48  $lng = $DIC->language();
49 
50  $this->ctrl = $ilCtrl;
51  $this->tpl = $tpl;
52  $this->lng = $lng;
53  $this->ui = $DIC->ui();
54  }
55 
56 
60  public function executeCommand()
61  {
62  $cmd = $this->ctrl->getCmd("showContacts");
63  if (in_array($cmd, array("showContacts"))) {
64  $this->$cmd();
65  }
66  }
67 
71  public function showContacts()
72  {
73  $this->lng->loadLanguageModule("adm");
74  $this->tpl->loadStandardTemplate();
75  $this->tpl->setTitle($this->lng->txt("adm_support_contacts"));
76 
77  $html = "";
79  $pgui = new ilPublicUserProfileGUI($c);
80  //$pgui->setBackUrl($this->ctrl->getLinkTargetByClass("ilinfoscreengui"));
81  $pgui->setEmbedded(true);
82  $html .= $pgui->getHTML();
83  }
84 
85  $f = $this->ui->factory();
86  $r = $this->ui->renderer();
87  $p = $f->panel()->standard(
88  $this->lng->txt("adm_support_contacts"),
89  $f->legacy()->content($html)
90  );
91 
92  $this->tpl->setContent($r->render($p));
93  $this->tpl->printToStdout();
94  }
95 
96 
102  public static function getFooterLink()
103  {
104  global $DIC;
105 
106  $ilCtrl = $DIC->ctrl();
107  $ilUser = $DIC->user();
108 
110  if (count($users) > 0) {
111  // #17847 - we cannot use a proper GUI on the login screen
112  if (!$ilUser->getId() || $ilUser->getId() == ANONYMOUS_USER_ID) {
115  );
116  } else {
117  return $ilCtrl->getLinkTargetByClass("ilsystemsupportcontactsgui", "", "", false, false);
118  }
119  }
120 
121  return "";
122  }
123 
129  public static function getFooterText()
130  {
131  global $DIC;
132 
133  $lng = $DIC->language();
134  return $lng->txt("contact_sysadmin");
135  }
136 }
const ANONYMOUS_USER_ID
Definition: constants.php:27
static prepareFormOutput($a_str, bool $a_strip=false)
$c
Definition: deliver.php:25
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
GUI class for public user profile presentation.
static getMailsToAddress()
Get mailto: emails.
global $DIC
Definition: shib_login.php:22
static getValidSupportContactIds()
Get valid support contacts.
$r