Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
squiz_suite_system_suite_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  );
63 
64  }//end constructor
65 
66 
67 }//end class
68 
69 ?>