Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
xml_user_bridge_management.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
18 
30 {
31 
32 
42  {
43  $this->Asset_Management($pm);
44 
45  $this->vars = Array(
46  'name' => Array(
47  'added' => '0.1',
48  'type' => 'text',
49  'default' => '',
50  'is_admin' => FALSE,
51  'is_contextable'=> TRUE,
52  ),
53  'data_url' => Array(
54  'added' => '0.1',
55  'type' => 'url',
56  'default' => '',
57  ),
58  'refresh_time' => Array(
59  'added' => '0.1',
60  'type' => 'duration',
61  'default' => 120,
62  ),
63  'user_type' => Array(
64  'added' => '0.1',
65  'type' => 'text',
66  'default' => 'user',
67  ),
68  );
69 
70 
71  }//end constructor
72 
73 
80  function _getFileList()
81  {
82  return Array(
83  'files/user_bridge_example.xml',
84  );
85 
86  }//end _getFileList()
87 
88 
89 }//end class
90 ?>