Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
ipb_post_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
30 {
31 
32 
37  function Ipb_Post_Management(&$pm)
38  {
39  $this->Asset_Management($pm);
40 
41  $this->vars = Array(
42  'name' => Array(
43  'added' => '0.1',
44  'type' => 'text',
45  'default' => '',
46  ),
47  'description' => Array(
48  'added' => '0.1',
49  'type' => 'text',
50  'default' => '',
51  ),
52  'author_name' => Array(
53  'added' => '0.1',
54  'type' => 'text',
55  'default' => '',
56  ),
57  'post_date' => Array(
58  'added' => '0.1',
59  'type' => 'text',
60  'default' => '',
61  ),
62  'post_title' => Array(
63  'added' => '0.1',
64  'type' => 'text',
65  'default' => '',
66  ),
67  'post_parent' => Array(
68  'added' => '0.1',
69  'type' => 'text',
70  'default' => '',
71  ),
72  'topic_name' => Array(
73  'added' => '0.1',
74  'type' => 'text',
75  'default' => '',
76  ),
77  'forum_name' => Array(
78  'added' => '0.1',
79  'type' => 'text',
80  'default' => '',
81  ),
82  );
83 
84  }//end constructor
85 
86 
87 }//end class
88 
89 ?>