Worked on Case TRacker grid and saving part in ProcessMap Context option
This commit is contained in:
18
workflow/engine/methods/bpmn/proxyCaseTrackerObjects.php
Normal file
18
workflow/engine/methods/bpmn/proxyCaseTrackerObjects.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
G::LoadClass('processMap');
|
||||
$oProcessMap = new processMap(new DBConnection);
|
||||
|
||||
if (isset($_GET['pid'] ))
|
||||
{
|
||||
$rows = $oProcessMap->getExtCaseTrackerObjectsCriteria($_GET['pid']);
|
||||
}
|
||||
|
||||
if (isset($_GET['tid'] ))
|
||||
{
|
||||
$rows = $oProcessMap->getAvailableExtCaseTrackerObjects($_GET['tid']);
|
||||
}
|
||||
array_shift($rows);
|
||||
$result['totalCount'] = count($rows);
|
||||
$result['data'] = $rows;
|
||||
print json_encode($result);
|
||||
?>
|
||||
Reference in New Issue
Block a user