ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTestPlayerFactory.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
13 {
19  private $testOBJ = null;
20 
26  public function __construct(ilObjTest $testOBJ)
27  {
28  $this->testOBJ = $testOBJ;
29  }
30 
37  public function getPlayerGUI()
38  {
39  switch( $this->testOBJ->getQuestionSetType() )
40  {
43 
44  require_once 'Modules/Test/classes/class.ilTestOutputGUI.php';
45  return new ilTestOutputGUI($this->testOBJ);
46 
48 
49  require_once 'Modules/Test/classes/class.ilTestPlayerDynamicQuestionSetGUI.php';
50  return new ilTestPlayerDynamicQuestionSetGUI($this->testOBJ);
51  }
52  }
53 }
const QUESTION_SET_TYPE_RANDOM
type setting value for random question set
Output class for assessment test execution.
__construct(ilObjTest $testOBJ)
constructor
getPlayerGUI()
creates and returns an instance of a player gui that corresponds to the current test mode ...
const QUESTION_SET_TYPE_FIXED
type setting value for fixed question set
const QUESTION_SET_TYPE_DYNAMIC
type setting value for dynamic question set (continues testing mode)