. * * For more information, contact Colosa Inc, 2566 Le Jeune Rd., * Coral Gables, FL, 33134, USA, or email info@colosa.com. * */ $ROL_UID = $_GET['rUID']; $TYPE_DATA = $_GET["type"]; global $RBAC; if ($TYPE_DATA=='list') $oDataset = $RBAC->getRoleUsers($ROL_UID); if ($TYPE_DATA=='show') $oDataset = $RBAC->getAllUsers($ROL_UID); $rows = Array(); while($oDataset->next()){ $rows[] = $oDataset->getRow(); } echo '{users: '.G::json_encode($rows).'}';