Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
cmis_bridge_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
38  function CMIS_Bridge_Management(&$pm)
39  {
40  $this->Asset_Management($pm);
41  $this->vars = Array(
42  'name' => Array(
43  'added' => '0.1',
44  'type' => 'text',
45  'default' => '',
46  'description' => 'The full name of the bridge',
47  'update_fn' => '',
48  'is_admin' => FALSE,
49  'is_contextable' => TRUE,
50  ),
51  'repository_name' => Array(
52  'added' => '0.1',
53  'type' => 'text',
54  'default' => '',
55  'description' => 'Root document library name to synchronize with'
56  ),
57  'wsdl' => Array (
58  'added' => '0.1',
59  'type' => 'serialise',
60  'default' => Array(
61  'ObjectService' => '',
62  'NavigationService' => '',
63  'RepositoryService' => ''
64  )
65  ),
66  'metadata_fields' => Array (
67  'added' => '0.1',
68  'type' => 'serialise',
69  'default' => Array()
70  ),
71  'ws_security' => Array (
72  'added' => '0.1',
73  'type' => 'boolean',
74  'default' => 'false',
75  'parameters' => Array( 'allow_empty' => FALSE,),
76  'description' => 'Whether to send WS-Security headers with each SOAP request',
77  ),
78  'username' => Array(
79  'added' => '0.1',
80  'type' => 'text',
81  'default' => '',
82  ),
83  'password' => Array(
84  'added' => '0.1',
85  'type' => 'password',
86  'default' => '',
87  ),
88  );
89 
90  }//end constructor
91 
92 
93 }//end class
94 
95 ?>