Add getApps() method to return apps supporting migration

remotes/origin/stable4
Tom Needham 14 years ago
parent a919a136c4
commit fa8b66ca4f
  1. 15
      lib/migrate.php

@ -121,6 +121,21 @@ class OC_Migrate{
}
/**
* @breif returns an array of apps that support migration
* @return array
*/
static public function getApps(){
$allapps = OC_App::getAllApps();
foreach($allapps as $app){
$path = OC::$SERVERROOT . '/apps/' . $app . '/lib/migrate.php';
if( file_exists( $path ) ){
$supportsmigration[] = $app;
}
}
reutrn $supportsmigration;
}
/**
* @breif imports a new user
* @param $db string path to migration.db

Loading…
Cancel
Save