Fix version metadata.
This commit is contained in:
25403
cachegrind.out.10
Normal file
25403
cachegrind.out.10
Normal file
File diff suppressed because it is too large
Load Diff
751003
cachegrind.out.11
Normal file
751003
cachegrind.out.11
Normal file
File diff suppressed because it is too large
Load Diff
25451
cachegrind.out.12
Normal file
25451
cachegrind.out.12
Normal file
File diff suppressed because it is too large
Load Diff
35315
cachegrind.out.13
Normal file
35315
cachegrind.out.13
Normal file
File diff suppressed because it is too large
Load Diff
25467
cachegrind.out.14
Normal file
25467
cachegrind.out.14
Normal file
File diff suppressed because it is too large
Load Diff
25403
cachegrind.out.141
Normal file
25403
cachegrind.out.141
Normal file
File diff suppressed because it is too large
Load Diff
25403
cachegrind.out.15
Normal file
25403
cachegrind.out.15
Normal file
File diff suppressed because it is too large
Load Diff
35347
cachegrind.out.33
Normal file
35347
cachegrind.out.33
Normal file
File diff suppressed because it is too large
Load Diff
25379
cachegrind.out.79
Normal file
25379
cachegrind.out.79
Normal file
File diff suppressed because it is too large
Load Diff
@@ -21,6 +21,7 @@ class MigratorFactory
|
|||||||
case 'FILES':
|
case 'FILES':
|
||||||
$class = new FilesMigrator();
|
$class = new FilesMigrator();
|
||||||
break;
|
break;
|
||||||
|
case 'DBCONNECTION':
|
||||||
case 'DBCONNECTIONS':
|
case 'DBCONNECTIONS':
|
||||||
$class = new DBConnectionMigrator();
|
$class = new DBConnectionMigrator();
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ class PMXGenerator
|
|||||||
public function generate($data)
|
public function generate($data)
|
||||||
{
|
{
|
||||||
$rootNode = $this->domDocument->createElement($data['container']);
|
$rootNode = $this->domDocument->createElement($data['container']);
|
||||||
$rootNode->setAttribute("version", $data['container']);
|
$rootNode->setAttribute("version", $data['version']);
|
||||||
$this->domDocument->appendChild($rootNode);
|
$this->domDocument->appendChild($rootNode);
|
||||||
|
|
||||||
$metadata = $data["metadata"];
|
$metadata = $data["metadata"];
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ class ProcessDefinitionMigrator implements Importable, Exportable
|
|||||||
$oData->tasks = $this->processes->getTaskRows($prj_uid);
|
$oData->tasks = $this->processes->getTaskRows($prj_uid);
|
||||||
|
|
||||||
$oDataTask = new \StdClass();
|
$oDataTask = new \StdClass();
|
||||||
$oDataTask->taskusers = $this->getTaskUserRows($oData->tasks);
|
$oDataTask->taskusers = $this->processes->getTaskUserRows($oData->tasks);
|
||||||
|
|
||||||
$oData->routes = $this->processes->getRouteRows($prj_uid);
|
$oData->routes = $this->processes->getRouteRows($prj_uid);
|
||||||
$oData->lanes = $this->processes->getLaneRows($prj_uid);
|
$oData->lanes = $this->processes->getLaneRows($prj_uid);
|
||||||
|
|||||||
Reference in New Issue
Block a user