ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ToolIdentificationProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use LogicException;
30 {
34  public function contextAwareIdentifier(string $identifier_string, bool $ignore_context = false): IdentificationInterface
35  {
36  if ($ignore_context) {
37  return parent::identifier($identifier_string);
38  }
39  global $DIC;
40 
41  $get = $DIC->http()->request()->getQueryParams();
42  if (isset($get['ref_id'])) {
43  $identifier_string .= '_' . $get['ref_id'];
44  }
45 
46  return parent::identifier($identifier_string);
47  }
48 
52  #[\Override]
53  public function identifier(string $identifier_string): IdentificationInterface
54  {
55  throw new LogicException('Tools must use contextAwareIdentifier');
56  }
57 }
global $DIC
Definition: shib_login.php:22
contextAwareIdentifier(string $identifier_string, bool $ignore_context=false)