ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjTestListGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
16 include_once "Services/Object/classes/class.ilObjectListGUI.php";
17 include_once "./Modules/Test/classes/inc.AssessmentConstants.php";
18 
20 {
21  protected $command_link_params = array();
22 
27  function ilObjTestListGUI()
28  {
29  $this->ilObjectListGUI();
30  $this->info_screen_enabled = true;
31  }
32 
36  function init()
37  {
38  $this->static_link_enabled = true;
39  $this->delete_enabled = true;
40  $this->cut_enabled = true;
41  $this->copy_enabled = true;
42  $this->subscribe_enabled = true;
43  $this->link_enabled = true;
44  $this->payment_enabled = true;
45  $this->type = "tst";
46  $this->gui_class_name = "ilobjtestgui";
47 
48  // general commands array
49  include_once "./Modules/Test/classes/class.ilObjTestAccess.php";
50  $this->commands = ilObjTestAccess::_getCommands();
51  }
52 
53 
62  function initItem($a_ref_id, $a_obj_id, $a_title = "", $a_description = "")
63  {
64  parent::initItem($a_ref_id, $a_obj_id, $a_title, $a_description);
65  }
66 
67 
75  function getCommandFrame($a_cmd)
76  {
77  switch($a_cmd)
78  {
79  case "":
80  case "infoScreen":
81  case "eval_a":
82  case "eval_stat":
83  include_once "./Services/UICore/classes/class.ilFrameTargetInfo.php";
84  $frame = ilFrameTargetInfo::_getFrame("MainContent");
85  break;
86 
87  default:
88  }
89 
90  return $frame;
91  }
92 
93 
94 
103  function getProperties()
104  {
105  global $lng, $ilUser;
106 
107  $props = array();
108  include_once "./Modules/Test/classes/class.ilObjTestAccess.php";
109 
110 // if (!ilObjTestAccess::_lookupCreationComplete($this->obj_id))
111 // {
112 // $props[] = array("alert" => true, "property" => $lng->txt("status"),
113 // "value" => $lng->txt("tst_warning_test_not_complete"));
114 // }
115  if (!ilObjTestAccess::_isOnline($this->obj_id))
116  {
117  $props[] = array("alert" => true, "property" => $lng->txt("status"),
118  "value" => $lng->txt("offline"));
119  }
120 
121 
122  // we cannot use ilObjTestAccess::_isOffline() because of text messages
123  $onlineaccess = ilObjTestAccess::_lookupOnlineTestAccess($this->obj_id, $ilUser->id);
124  if ($onlineaccess !== true)
125  {
126  $props[] = array("alert" => true, "property" => $lng->txt("status"),
127  "value" => $onlineaccess);
128  }
129 
130  return $props;
131  }
132 
133 
141  function getCommandLink($a_cmd)
142  {
143  global $ilCtrl;
144 
145  $a_cmd = explode('::', $a_cmd);
146 
147  if( count($a_cmd) == 2 )
148  {
149  $cmd_link = $ilCtrl->getLinkTargetByClass(array('ilRepositoryGUI', 'ilObjTestGUI', $a_cmd[0]), $a_cmd[1]);
150  }
151  else
152  {
153  $cmd_link = $ilCtrl->getLinkTargetByClass('ilObjTestGUI', $a_cmd[0]);
154  }
155 
156  $params = array_merge(array('ref_id' => $this->ref_id), $this->command_link_params);
157 
158  foreach($params as $param => $value)
159  {
160  $cmd_link = ilUtil::appendUrlParameterString($cmd_link, "$param=$value", true);
161  }
162 
163  return $cmd_link;
164  }
165 
173  public function createDefaultCommand($a_command)
174  {
175  return $a_command;
176  }
177 
178 
186  public function addCommandLinkParameter($a_param)
187  {
188  $this->command_link_params = $a_param;
189  }
190 
194  function getCommandImage($a_cmd)
195  {
196  switch ($a_cmd)
197  {
198  case "outEvaluation":
199  return ilUtil::getImagePath("cmd_evaluation_s.png");
200 
201  default:
202  return "";
203  }
204  }
205 
206 } // END class.ilObjTestListGUI
207 ?>
getCommandImage($a_cmd)
Get command icon image.
getCommandFrame($a_cmd)
Get command target frame.
ilObjectListGUI()
constructor
getCommandLink($a_cmd)
Get command link url.
ilObjTestListGUI()
constructor
static _isOnline($a_obj_id)
returns the objects&#39;s ONline status
initItem($a_ref_id, $a_obj_id, $a_title="", $a_description="")
inititialize new item
getProperties()
Get item properties.
global $ilCtrl
Definition: ilias.php:18
_lookupOnlineTestAccess($a_test_id, $a_user_id)
Checks if a user is allowd to run an online exam.
static appendUrlParameterString($a_url, $a_par, $xml_style=false)
append URL parameter string ("par1=value1&par2=value2...") to given URL string
Class ilObjTestListGUI.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
Class ilObjectListGUI.
addCommandLinkParameter($a_param)
add command link parameters
_getCommands()
get commands
global $ilUser
Definition: imgupload.php:15
static _getFrame($a_class, $a_type='')
Get content frame name.
global $lng
Definition: privfeed.php:40
createDefaultCommand($a_command)
overwritten from base class for course objectives