// // $Id: include_once OOO_APP_MODULES . '/page.php'; include_once OOO_APP_CLASSES . '/usergroup.php'; include_once OOO_APP_CLASSES . '/user.php'; include_once OOO_CORE . '/form/Form.php'; include_once OOO_CORE . '/form/FormController.php'; include_once OOO_CORE . '/gui/SmartyUtil.php'; include_once OOO_LIB . '/phpgacl/gacl.class.php'; include_once OOO_LIB . '/phpgacl/gacl_api.class.php'; $group_id = $_GET['id']; //group_id $gacl_api = new gacl_api($gacl_options); $id = $gacl_api->get_group_id($group_id, $group_id, 'ARO'); //aro group_id $arr_user = $gacl_api->get_group_objects($id, 'aro'); //aro object value $group = new usergroup($DB); if (is_array($arr_user)) { if (count($arr_user)) { $arr_in = $group->selectInUser($arr_user['users'], 1); $arr_out = $group->selectInUser($arr_user['users'], 0); } else { $user = new user($DB); $arr_out = $user->selectAlluser(1000, 1); } } $smartyutil = new SmartyUtil(); $arr_newin = $smartyutil->toSmartyArray($arr_in, 'name', 'id'); $arr_newout = $smartyutil->toSmartyArray($arr_out, 'name', 'id'); $form = new Form('form1', 'index.php', 'post');