ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAssQuestionHintRequestStatisticRegister.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 
6 
16 {
21 
28  {
29  if (!isset($this->requestsByTestPassIndexAndQuestionId[$passIndex])) {
30  $this->requestsByTestPassIndexAndQuestionId[$passIndex] = array();
31  }
32 
33  $this->requestsByTestPassIndexAndQuestionId[$passIndex][$qId] = $request;
34  }
35 
41  public function getRequestByTestPassIndexAndQuestionId($passIndex, $qId)
42  {
43  return $this->requestsByTestPassIndexAndQuestionId[$passIndex][$qId];
44  }
45 }
addRequestByTestPassIndexAndQuestionId($passIndex, $qId, ilAssQuestionHintRequestStatisticData $request)