Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
package_manager_filesystem.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/package_manager.inc';
18 
32 {
33 
39  {
40  $this->_full_path = SQ_PACKAGES_PATH.'/filesystem';
41  $this->Package_Manager();
42 
43  }//end constructor
44 
45 
55  {
56  $system_assets = Array(
57  );
58  $installed_assets = Array();
59 
60  foreach ($system_assets as $type_code) {
61  if ($GLOBALS['SQ_SYSTEM']->am->installed($type_code)) {
62  $installed_assets[] = $type_code;
63  }
64  }
65 
66  return $installed_assets;
67 
68  }//end getSystemAssetTypes()
69 
70 
71 }//end class
72 
73 ?>