Adding Exporter for BPMN Projects (1st commit)

This commit is contained in:
Erik Amaru Ortiz
2014-02-28 19:11:34 -04:00
parent cd5c861337
commit 1a4d3b0a21
8 changed files with 294 additions and 4 deletions

View File

@@ -237,6 +237,10 @@ class Workflow extends Handler
return $tasks->getAllTasks($this->proUid);
}
/**
* @param string $tasUid
* @param bool $value
*/
public function setStartTask($tasUid, $value = true)
{
$value = $value ? "TRUE" : "FALSE";
@@ -248,6 +252,10 @@ class Workflow extends Handler
self::log("Setting Start Task -> $value, Success!");
}
/**
* @param string $tasUid
* @param bool $value
*/
public function setEndTask($tasUid, $value = true)
{
self::log("Setting End Task with Uid: $tasUid: " . ($value ? "TRUE" : "FALSE"));