ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilFrameTargetInfo.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  public static function _getFrame(string $a_class): string
28  {
29  switch ($a_class) {
30  case 'RepositoryContent':
31  case 'MainContent':
32  return self::getLtiFrame();
33 
34  case 'ExternalContent':
35  return '_blank';
36 
37  default:
38  return '';
39  }
40  }
41 
42  protected static function getLtiFrame(): string
43  {
44  global $DIC;
45 
46  if ($DIC->offsetExists('lti') && $DIC['lti']->isActive()) {
47  return '_self';
48  }
49 
50  return '_top';
51  }
52 }
global $DIC
Definition: shib_login.php:22
static _getFrame(string $a_class)