.
*
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/
$tree = new PmTree();
$tree->name = 'Groups';
$tree->nodeType = "base";
$tree->width = "200px";
$tree->contentWidth = "220";
$tree->value = '
';
$tree->showSign = false;
$o = new Cases();
$steps = $o->getAllDynaformsStepsToRevise($_GET['APP_UID']);
$APP_UID = $_GET['APP_UID'];
$DEL_INDEX = $_GET['DEL_INDEX'];
$html = "
";
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
$ch->point = '
';
$i=1;
$PRO_UID='';
$DYN_UID='';
foreach ($steps as $step) {
require_once 'classes/model/Dynaform.php';
$od = new Dynaform();
$dynaformF = $od->Load($step['STEP_UID_OBJ']);
$n = $step['STEP_POSITION'];
$TITLE = " - ".$dynaformF['DYN_TITLE'];
$DYN_UID = $dynaformF['DYN_UID'];
$PRO_UID = $step['PRO_UID'];
$html = "
";
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
$ch->point = '
';
$i++;
}
$html = "
";
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
$ch->point = '
';
$steps = $o->getAllInputsStepsToRevise($_GET['APP_UID']);
//$i=1;
foreach ($steps as $step) {
require_once 'classes/model/InputDocument.php';
$od = new InputDocument();
$IDF = $od->Load($step['STEP_UID_OBJ']);
$n = $step['STEP_POSITION'];
$TITLE = " - ".$IDF['INP_DOC_TITLE'];
$INP_DOC_UID = $IDF['INP_DOC_UID'];
$PRO_UID = $step['PRO_UID'];
$html = "
";
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
$ch->point = '
';
$i++;
}
$i++;
$html = "
";
$ch = $tree->addChild("", $html, array('nodeType' => 'child'));
$ch->point = '
';
print($tree->render());
//