Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
ipb_bridge_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
38  function IPB_Bridge_Management(&$pm)
39  {
40  $this->Asset_Management($pm);
41 
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  'version' => Array(
51  'added' => '0.1',
52  'type' => 'selection',
53  'default' => 'none',
54  'parameters' => Array(
55  'options' => Array(
56  'none' => '-- Select One --',
57  '2_0_4' => 'IPB (v2.0.x)',
58  '2_1_3' => 'IPB (v2.1.x)',
59  '2_2_1' => 'IP.Board (v2.2.x)',
60  '3_0_2' => 'IP.Board (v3.0.2)',
61  ),
62  'multiple' => FALSE,
63  'allow_empty' => FALSE,
64  ),
65  ),
66  'location' => Array(
67  'added' => '0.1',
68  'type' => 'text',
69  'default' => '',
70  ),
71  'user_attributes' => Array(
72  'added' => '0.1',
73  'type' => 'serialise',
74  'default' => Array(),
75  ),
76  );
77 
78  }//end constructor
79 
80 
81 }//end class
82 
83 ?>