Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
ipb_poll_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
29 {
30 
31 
36  function Ipb_Poll_Management(&$pm)
37  {
38  $this->Asset_Management($pm);
39 
40  $this->vars = Array(
41  'pid' => Array(
42  'added' => '0.1',
43  'type' => 'int',
44  'default' => 0,
45  ),
46  'tid' => Array(
47  'added' => '0.1',
48  'type' => 'int',
49  'default' => 0,
50  ),
51  'start_date' => Array(
52  'added' => '0.1',
53  'type' => 'int',
54  'default' => 0,
55  ),
56  'choices' => Array(
57  'added' => '0.1',
58  'type' => 'text',
59  'default' => '',
60  ),
61  'starter_id' => Array(
62  'added' => '0.1',
63  'type' => 'int',
64  'default' => 0,
65  ),
66  'votes' => Array(
67  'added' => '0.1',
68  'type' => 'int',
69  'default' => 0,
70  ),
71  'forum_id' => Array(
72  'added' => '0.1',
73  'type' => 'int',
74  'default' => 0,
75  ),
76  'poll_question' => Array(
77  'added' => '0.1',
78  'type' => 'text',
79  'default' => '',
80  ),
81  'poll_state' => Array(
82  'added' => '0.1',
83  'type' => 'text',
84  'default' => '',
85  ),
86  );
87 
88  }//end constructor
89 
90 
91 }//end class
92 
93 ?>