Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
soap_api_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.0.1',
46  'type' => 'text',
47  'default' => '',
48  'description' => 'The full name of the page',
49  'update_fn' => '',
50  'is_admin' => FALSE,
51  'is_contextable' => TRUE,
52  ),
53  'short_name' => Array(
54  'added' => '0.0.1',
55  'type' => 'text',
56  'default' => '',
57  'description' => 'The short name of the page',
58  'update_fn' => '',
59  'is_admin' => FALSE,
60  'is_contextable' => TRUE,
61  ),
62  'function_list' => Array (
63  'added' => '0.1',
64  'type' => 'serialise',
65  'default' => Array(),
66  'description' => '',
67  'is_admin' => TRUE,
68  'parameters' => Array (
69  'multiple' => FALSE,
70  'allow_empty' => TRUE,
71  ),
72  ),
73  );
74 
75  }//end constructor
76 
77 
84  function _getFileList()
85  {
86  return Array(
87  'web_services_caller.js',
88  );
89 
90  }//end _getFileList()
91 
92 
93 }//end class
94 ?>