Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
structured_asset_info_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  require_once SQ_INCLUDE_PATH.'/general_occasional.inc';
44 
45  $this->vars = Array(
46  'selected_asset_fields' => Array(
47  'added' => '0.1',
48  'type' => 'selection',
49  'default' => '0',
50  'description' => 'The asset at the head of the tree for which we will report details',
51  'parameters' => Array(
52  'options' => Array(
53  'assetid' => 'Asset ID',
54  'status' => 'Status',
55  'asset_type' => 'Asset Type',
56  'name' => 'Name',
57  'created_date' => 'Created Date',
58  'created_user' => 'Created User',
59  'last_updated_date' => 'Last Updated Date',
60  'last_updated_user' => 'Last Updated User',
61  'last_published_date' => 'Last Published Date',
62  'last_published_user' => 'Last Published User',
63  'last_status_change_date' => 'Last Status Change Date',
64  'last_status_change_user' => 'Last Status Change User',
65  'urls' => 'URLs',
66  'designs' => 'Designs',
67  'metadata_schemas' => 'Metadata Schemas',
68  'workflow_schemas' => 'Workflow Schemas',
69  ),
70  'multiple' => 'TRUE',
71  'allow_empty' => 'FALSE',
72  'allow_other' => 'FALSE',
73  ),
74  ),
75  'types' => Array(
76  'added' => '0.1',
77  'type' => 'serialise',
78  'default' => Array(),
79  'description' => 'The asset types to include in the report',
80  ),
81  );
82 
83  }//end constructor
84 
85 
86 }//end class
87 
88 ?>