ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLearningModuleLP.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  public static function getDefaultModes(bool $lp_active): array
27  {
28  if (!$lp_active) {
29  return array(
33  );
34  }
35 
36  return array(
41  );
42  }
43 
44  public function getDefaultMode(): int
45  {
47  }
48 
49  public function getValidModes(): array
50  {
51  return array(
60  );
61  }
62 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getDefaultModes(bool $lp_active)