BPMN Project Import chages to import alll workflow properties data

This commit is contained in:
Erik Amaru Ortiz
2014-03-27 19:11:11 -04:00
parent edaf69ec0e
commit 00fd862056
8 changed files with 187 additions and 34 deletions

View File

@@ -95,9 +95,10 @@ class Workflow extends Handler
}
}
public function update()
public function update($data)
{
// TODO: Implement update() method.
$process = new Process();
$process->update($data);
}
public function remove()
@@ -755,11 +756,11 @@ class Workflow extends Handler
//Delete the process
try {
$oProcess->remove($sProcessUID);
} catch (Exception $oError) {
} catch (\Exception $oError) {
throw ($oError);
}
return true;
} catch (Exception $oError) {
} catch (\Exception $oError) {
throw ($oError);
}
}