Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
online_quiz_question_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
32 {
33 
34 
40  {
41  $this->Asset_Management($pm);
42 
43  $this->vars = Array(
44  'name' => Array(
45  'added' => '0.1',
46  'type' => 'text',
47  'default' => '',
48  ),
49  'question_text' => Array(
50  'added' => '0.1',
51  'type' => 'text',
52  'default' => '',
53  'description' => 'The question text printed if the question text bodycopy hasn\'t been customised',
54  ),
55  'question_note' => Array(
56  'added' => '0.3',
57  'type' => 'wysiwyg',
58  'default' => '',
59  'description' => 'Supplementary information related to the question',
60  ),
61  );
62 
63  }//end constructor
64 
65 
66 }//end class
67 ?>