Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
ipb_topic_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
29 {
30 
31 
36  function Ipb_Topic_Management(&$pm)
37  {
38  $this->Asset_Management($pm);
39 
40  $this->vars = Array(
41  'name' => Array(
42  'added' => '0.1',
43  'type' => 'text',
44  'default' => '',
45  ),
46  'description' => Array(
47  'added' => '0.1',
48  'type' => 'text',
49  'default' => '',
50  ),
51  'posts' => Array(
52  'added' => '0.1',
53  'type' => 'int',
54  'default' => 0,
55  ),
56  'starter_name' => Array(
57  'added' => '0.1',
58  'type' => 'text',
59  'default' => '',
60  ),
61  'start_date' => Array(
62  'added' => '0.1',
63  'type' => 'text',
64  'default' => '',
65  ),
66  'last_poster_name' => Array(
67  'added' => '0.1',
68  'type' => 'text',
69  'default' => '',
70  ),
71  'last_post' => Array(
72  'added' => '0.1',
73  'type' => 'text',
74  'default' => '',
75  ),
76  );
77 
78  }//end constructor
79 
80 
81 }//end class
82 
83 ?>