ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilObjQuestionPoolAccess.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once "./Services/Object/classes/class.ilObjectAccess.php";
5 include_once "./Modules/Test/classes/inc.AssessmentConstants.php";
6 
17 {
30  function _getCommands()
31  {
32  $commands = array
33  (
34  array("permission" => "write", "cmd" => "questions", "lang_var" => "tst_edit_questions"),
35  array("permission" => "write", "cmd" => "ilObjQuestionPoolSettingsGeneralGUI::showForm", "lang_var" => "settings"),
36  #array("permission" => "write", "cmd" => "questions", "lang_var" => "edit",
37  # "default" => false),
38  array("permission" => "read", "cmd" => "questions", "lang_var" => "edit",
39  "default" => true)
40  );
41 
42  return $commands;
43  }
44 }
45 
46 ?>