* * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.fsf.org/copyleft/gpl.html. */ if (!defined(CONGREGATION_BASE)) { define(CONGREGATION_BASE, dirname(__FILE__)); } require_once CONGREGATION_BASE . '/lib/base.php'; require_once CONGREGATION_BASE . '/lib/Congregation.php'; $accountId = Util::getFormData('accountId'); if (!$accountId) { $accountId = $congregation->getAccountId(); if (is_a($accountId, 'PEAR_Error')) { // $notifications->push(_("Unable to search LDAP!")); print $accountId->message; } } $account = $congregation->getAccountDetail($accountId); if (is_a($account, 'PEAR_Error')) { // $notifications->push(_("Unable to search LDAP!")); print $account->message; } require $registry->get('templates', 'horde') . '/common-header.inc'; require CONGREGATION_TEMPLATES . '/common-header.inc'; require CONGREGATION_TEMPLATES . '/menu.inc'; $users = &$congregation->getUsersByAccount($account['id']); require CONGREGATION_TEMPLATES . "/listusers.inc"; #require CONGREGATION_TEMPLATES . '/common-footer.inc'; require $registry->get('templates', 'horde') . '/common-footer.inc';