" . $oGroup->getName(); } function getUserDropDown($iGroupID, $iUserID) { global $default; $oPatternListBox = & new PatternListBox("$default->owl_users_table", "name", "id", "fUserID"); $sFromClause = "INNER JOIN $default->owl_users_groups_table AS UGL ON ST.id = UGL.user_id "; $oPatternListBox->setFromClause($sFromClause); $sWhereClause = "UGL.group_id = $iGroupID"; $oPatternListBox->setWhereClause($sWhereClause); if (isset($iUserID)) { $oPatternListBox->setSelectedValue($iUserID); } $oPatternListBox->setEmptyErrorMessage("There are no users in this group"); return $oPatternListBox->render(); } function getRoleDropDown($iRoleID) { global $default; $oPatternListBox = & new PatternListBox("$default->owl_roles_table", "name", "id", "fRoleID"); if (isset($iRoleID)) { $oPatternListBox->setSelectedValue($iRoleID); } $oPatternListBox->setEmptyErrorMessage("There are no users in this group"); return $oPatternListBox->render(); } function getDocumentRoutingPage($iGroupID, $iUserID, $iRoleID, $iSequenceNumber, $fDocumentID) { global $default; return "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "\n" . "
Document Routing
Group".getGroupRow($iGroupID)."
Role".getRoleDropDown($iRoleID)."
Player".getUserDropDown($iGroupID, $iUserID)."
Seq. no.$iSequenceNumber
 
owl_root_url/control.php?action=viewDocument&fDocumentID=$fDocumentID \">Cancel
\n"; } ?>