ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilLearningModuleLP.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
13 {
14  public static function getDefaultModes($a_lp_active)
15  {
16  if (!$a_lp_active) {
17  return array(
21  );
22  } else {
23  return array(
28  );
29  }
30  }
31 
32  public function getDefaultMode()
33  {
35  }
36 
37  public function getValidModes()
38  {
39  return array(
48  );
49  }
50 }
static getDefaultModes($a_lp_active)