Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
sharepoint_connector_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
32 {
33 
34 
40  {
41  Asset_Management::__construct($pm);
42 
43  $this->vars = Array (
44  'name' => Array(
45  'added' => '0.1',
46  'type' => 'text',
47  'default' => '',
48  ),
49  'url' => Array (
50  'added' => '0.1',
51  'type' => 'text',
52  'default' => '',
53  'description' => 'The URL to a site of a Sharepoint system',
54  'is_admin' => '1',
55  'parameters' => Array (
56  'multiple' => FALSE,
57  'allow_empty' => TRUE,
58  ),
59  ),
60  'username' => Array (
61  'added' => '0.1',
62  'type' => 'text',
63  'default' => '',
64  'description' => 'The username used to connect to Sharepoint',
65  'is_admin' => '1',
66  'parameters' => Array (
67  'multiple' => FALSE,
68  'allow_empty' => TRUE,
69  ),
70  ),
71  'password' => Array (
72  'added' => '0.1',
73  'type' => 'password',
74  'default' => '',
75  'description' => 'The password used to connect to Sharepoint',
76  'is_admin' => '1',
77  'parameters' => Array (
78  'multiple' => FALSE,
79  'allow_empty' => TRUE,
80  ),
81  ),
82  );
83 
84  }//end constructor
85 
86 
87 }//end class
88 ?>