ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilItemGroupBehaviour.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  public const ALWAYS_OPEN = 0;
26  public const EXPANDABLE_CLOSED = 1;
27  public const EXPANDABLE_OPEN = 2;
28 
32  public static function getAll(): array
33  {
34  global $DIC;
35 
36  $lng = $DIC->language();
37 
38  return array(
39  self::ALWAYS_OPEN => $lng->txt("itgr_always_open"),
40  self::EXPANDABLE_CLOSED => $lng->txt("itgr_expandable_closed"),
41  self::EXPANDABLE_OPEN => $lng->txt("itgr_expandable_open")
42  );
43  }
44 }
$lng
global $DIC
Definition: feed.php:28
static getAll()
Get all behaviours.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...