ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLink.php
Go to the documentation of this file.
1 <?php
2 
21 
25 class ilLink
26 {
30  public static function _getLink(
31  ?int $a_ref_id,
32  string $a_type = '',
33  array $a_params = [],
34  string $append = ""
35  ): string {
36  global $DIC;
38  $static_url = $DIC["static_url"];
39 
40  $ilObjDataCache = $DIC["ilObjDataCache"];
41 
42  if ($a_type === '' && $a_ref_id) {
43  $a_type = $ilObjDataCache->lookupType($ilObjDataCache->lookupObjId($a_ref_id));
44  }
45 
46  $target = urlencode(CLIENT_ID) . '_' . $a_type . '_' . $a_ref_id . urlencode($append);
47 
48  $a_params = array_merge($a_params, [$append]);
49  $a_params = array_filter($a_params, static function ($value): bool {
50  return $value !== "";
51  });
52 
53  if (!empty($a_type)) {
54  return (string) $static_url->builder()->build(
55  $a_type,
56  $a_ref_id !== null ? new ReferenceId($a_ref_id) : null,
57  $a_params
58  );
59  }
60 
61  return '';
62  }
63 
67  public static function _getStaticLink(
68  ?int $a_ref_id,
69  string $a_type = '',
70  bool $a_fallback_goto = true,
71  string $append = ""
72  ): string {
73  return self::_getLink($a_ref_id, $a_type, [], $append);
74  }
75 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$static_url
Definition: goto.php:29
const CLIENT_ID
Definition: constants.php:41
global $DIC
Definition: shib_login.php:22