Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
poll_question_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
32 {
33 
34 
39  function Poll_Question_Management(&$pm)
40  {
41  $this->Asset_Management($pm);
42  $this->vars = Array(
43  'name' => Array(
44  'added' => '0.1',
45  'type' => 'text',
46  'default' => '',
47  'is_admin' => FALSE,
48  'is_contextable'=> TRUE,
49  ),
50  'options' => Array(
51  'added' => '0.1',
52  'type' => 'serialise',
53  'default' => Array(),
54  ),
55  'voters' => Array(
56  'added' => '0.1',
57  'type' => 'serialise',
58  'default' => Array(),
59  ),
60  'allow_multiple' => Array(
61  'added' => '0.2',
62  'type' => 'boolean',
63  'default' => FALSE,
64  ),
65  );
66 
67  }//end constructor
68 
69 
70 }//end class
71 
72 ?>