Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
online_quiz_submission_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
39  {
40  $this->Asset_Management($pm);
41 
42  $this->vars = Array(
43  'id' => Array(
44  'added' => '0.0.1',
45  'type' => 'text',
46  'default' => '',
47  ),
48  'user_details_answers' => Array(
49  'added' => '0.0.1',
50  'type' => 'serialise',
51  'default' => Array(),
52  'description' => 'array with keys "answers" and "summary"',
53  ),
54  'quiz_answers' => Array(
55  'added' => '0.0.1',
56  'type' => 'serialise',
57  'default' => Array(),
58  'description' => 'array with keys "answers" and "summary"',
59  ),
60  'user_details_questions' => Array(
61  'added' => '0.0.1',
62  'type' => 'serialise',
63  'default' => Array(),
64  'description' => 'array with keys "answers" and "summary"',
65  ),
66  'quiz_questions' => Array(
67  'added' => '0.0.1',
68  'type' => 'serialise',
69  'default' => Array(),
70  'description' => 'array with keys "answers" and "summary"',
71  ),
72  'attributes' => Array(
73  'added' => '0.0.1',
74  'type' => 'serialise',
75  'default' => Array(),
76  'description' => 'array with keys "answers" and "summary"',
77  ),
78  'complete' => Array(
79  'added' => '0.0.1',
80  'type' => 'boolean',
81  'default' => FALSE,
82  'description' => 'A historical artifact; always true',
83  ),
84  );
85 
86  }//end constructor
87 
88 
89 }//end class
90 ?>