ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getAll()
Get all behaviours.
global $lng
Definition: privfeed.php:31
global $DIC
Definition: shib_login.php:26