ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 }
Create styles array
The data for the language used.
addRequestByTestPassIndexAndQuestionId($passIndex, $qId, ilAssQuestionHintRequestStatisticData $request)