ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilLMPageGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/COPage/classes/class.ilPageObjectGUI.php");
6 include_once("./Modules/LearningModule/classes/class.ilLMPage.php");
7 
18 {
22  function __construct($a_id = 0, $a_old_nr = 0,
23  $a_prevent_get_id = false, $a_lang = "")
24  {
25  parent::__construct("lm", $a_id, $a_old_nr, $a_prevent_get_id, $a_lang);
26  }
27 
32  {
33  global $lng;
34 
35  if (strtolower($_GET["cmdClass"]) == "ilassquestionfeedbackeditinggui")
36  {
37  include_once("./Modules/LearningModule/classes/class.ilObjContentObject.php");
39  {
40  ilUtil::sendInfo($lng->txt("cont_def_feedb_deactivated"));
41  }
42  else
43  {
44  ilUtil::sendInfo($lng->txt("cont_def_feedb_activated"));
45  }
46  }
47  }
48 
49 }
50 
51 ?>