Refactoring Bpmn/Workflow handling layer (1st commit)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace ProcessMaker\Project\Adapter;
|
||||
|
||||
use ProcessMaker\Project\ProjectHandler;
|
||||
|
||||
class BpmnProject extends ProjectHandler
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace ProcessMaker\Project\Adapter;
|
||||
|
||||
use ProcessMaker\Project\Adapter\BpmnHandler;
|
||||
|
||||
class WorkflowBpmnProject extends BpmnHandler
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
namespace ProcessMaker\Project\Adapter;
|
||||
|
||||
use \Process;
|
||||
use \Task;
|
||||
|
||||
use ProcessMaker\Project\ProjectHandler;
|
||||
|
||||
class WorkflowProject extends ProjectHandler
|
||||
{
|
||||
public function create($data)
|
||||
{
|
||||
try {
|
||||
// setting defaults
|
||||
$data['TASKS'] = array_key_exists('TASKS', $data) ? $data['TASKS'] : array();
|
||||
$data['ROUTES'] = array_key_exists('ROUTES', $data) ? $data['ROUTES'] : array();
|
||||
|
||||
// Create project
|
||||
$process = new Process();
|
||||
$proUid = $process->create($data, false);
|
||||
|
||||
// Create project's tasks
|
||||
foreach ($data['TASKS'] as $taskData) {
|
||||
$taskData['PRO_UID'] = $proUid;
|
||||
$task = new Task();
|
||||
$task->create($taskData, false);
|
||||
}
|
||||
|
||||
// Create project's routes
|
||||
foreach ($data['ROUTES'] as $route) {
|
||||
|
||||
}
|
||||
|
||||
} catch (Exception $e) {
|
||||
//throw new \RuntimeException($e);
|
||||
echo $e->getMessage() . PHP_EOL;
|
||||
echo $e->getTraceAsString() . PHP_EOL;
|
||||
die;
|
||||
}
|
||||
}
|
||||
|
||||
public function update($prjUid, $data)
|
||||
{
|
||||
// TODO: Implement update() method.
|
||||
}
|
||||
|
||||
public function delete($prjUid)
|
||||
{
|
||||
// TODO: Implement delete() method.
|
||||
}
|
||||
|
||||
public function load($prjUid)
|
||||
{
|
||||
// TODO: Implement load() method.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user