ILIAS  Release_4_2_x_branch Revision 61807
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilObjLearningModuleAccess.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Modules/LearningModule/classes/class.ilObjContentObjectAccess.php");
6 
17 {
18 
31  function _getCommands()
32  {
33  $commands = array
34  (
35  array("permission" => "read", "cmd" => "view", "lang_var" => "show",
36  "default" => true),
37  array("permission" => "read", "cmd" => "continue", "lang_var" => "continue_work"),
38  array("permission" => "write", "cmd" => "edit", "lang_var" => "edit"),
39  );
40 
41  return $commands;
42  }
43 
44 }
45 
46 ?>