Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
decision_tree_question_type_select_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  'style' => Array(
44  'added' => '0.0.1',
45  'type' => 'selection',
46  'default' => 'DROP_DOWN',
47  'parameters' => Array(
48  'options' => Array(
49  'DROP_DOWN' => 'Drop Down',
50  'RADIO' => 'Radio',
51  ),
52  'allow_empty' => FALSE,
53  'multiple' => FALSE
54  ),
55  ),
56  'options' => Array(
57  'added' => '0.0.1',
58  'type' => 'serialise',
59  'default' => Array(),
60  ),
61  'extra' => Array(
62  'added' => '0.0.1',
63  'type' => 'text',
64  'default' => '',
65  ),
66  'empty_key' => Array(
67  'added' => '0.0.1',
68  'type' => 'text',
69  'default' => 'EMPTY',
70  ),
71  'empty_text' => Array(
72  'added' => '0.0.1',
73  'type' => 'text',
74  'default' => 'Please Select',
75  ),
76  );
77 
78  }//end constructor
79 
80 
81 }//end class
82 ?>