Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
data_source_json_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
39  {
40  $this->Asset_Management($pm);
41  $this->vars = Array(
42  'path' => Array(
43  'added' => '0.1',
44  'type' => 'text',
45  'default' => '',
46  ),
47  'root_object' => Array (
48  'added' => '0.1',
49  'type' => 'text',
50  'default' => '',
51  'description' => 'Root JSON object name for parser',
52  ),
53  'nodes' => Array (
54  'added' => '0.1',
55  'type' => 'text',
56  'default' => '',
57  'description' => 'Newline-separated list of JSON object properties to retrieve',
58  ),
59  'parameter_map' => Array(
60  'added' => '0.1',
61  'type' => 'parameter_map',
62  'default' => Array(),
63  'parameters' => Array(
64  'parameters' => Array(
65  'source_asset' => 'Source asset for JSON data'
66  ),
67  ),
68  ),
69  );
70 
71  }//end constructor
72 
73 
74 }//end class
75 
76 ?>