Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
root_folder_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
31 {
32 
33 
38  function Root_Folder_Management(&$pm)
39  {
40  $this->Asset_Management($pm);
41 
42  // only need to have the default here because the other information will be
43  // gleaned from the 'folder' type
44  $this->vars = Array(
45  'name' => Array(
46  'default' => 'Root Folder',
47  ),
48  );
49 
50 
51  }//end constructor
52 
53 
54 }//end class
55 ?>