mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-19 15:17:16 +01:00
- add ability to limit search to groups
git-svn-id: file:///svn/phpbb/trunk@5199 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
1b331f3dd6
commit
f71d1a2a00
@ -67,7 +67,7 @@ switch ($mode)
|
||||
|
||||
$user->add_lang('groups');
|
||||
|
||||
$page_title = $user->lang['TEAM'];
|
||||
$page_title = $user->lang['THE_TEAM'];
|
||||
$template_html = 'memberlist_leaders.html';
|
||||
|
||||
$user_ary = $auth->acl_get_list(false, array('a_', 'm_'), false);
|
||||
@ -151,7 +151,7 @@ switch ($mode)
|
||||
'RANK_IMG' => $rank_img,
|
||||
|
||||
'U_GROUP' => $u_group,
|
||||
'U_PROFILE' => "{$phpbb_root_path}memberlist.$phpEx$SID&mode=viewprofile&u=$user_id",
|
||||
'U_VIEWPROFILE' => "{$phpbb_root_path}memberlist.$phpEx$SID&mode=viewprofile&u={$row['user_id']}",
|
||||
'U_PM' => ($auth->acl_get('u_sendpm')) ? "{$phpbb_root_path}ucp.$phpEx$SID&i=pm&mode=compose&u=$user_id" : '')
|
||||
);
|
||||
}
|
||||
@ -194,7 +194,7 @@ switch ($mode)
|
||||
$lang = 'JABBER';
|
||||
$sql_field = 'user_jabber';
|
||||
$s_select = (@extension_loaded('xml')) ? 'S_SEND_JABBER' : 'S_NO_SEND_JABBER';
|
||||
$s_action = "memberlist.$phpEx$SID&mode=contact&action=$action&u=$user_id";
|
||||
$s_action = "{$phpbb_root_path}memberlist.$phpEx$SID&mode=contact&action=$action&u=$user_id";
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -219,7 +219,7 @@ switch ($mode)
|
||||
switch ($action)
|
||||
{
|
||||
case 'icq':
|
||||
$presence_img = '<img src="http://web.icq.com/whitepages/online?icq=' . $row[$sql_field] . '&img=5" width="18" height="18" border="0" alt="" />';
|
||||
$presence_img = '<img src="http://web.icq.com/whitepages/online?icq=' . $row[$sql_field] . '&img=5" width="18" height="18" alt="" />';
|
||||
break;
|
||||
|
||||
case 'jabber':
|
||||
@ -742,6 +742,7 @@ switch ($mode)
|
||||
$yahoo = request_var('yahoo', '');
|
||||
$msn = request_var('msn', '');
|
||||
$jabber = request_var('jabber', '');
|
||||
$search_group_id = request_var('search_group_id', 0);
|
||||
|
||||
$joined_select = request_var('joined_select', 'lt');
|
||||
$active_select = request_var('active_select', 'lt');
|
||||
@ -786,6 +787,12 @@ switch ($mode)
|
||||
$sql_where .= (is_numeric($count)) ? ' AND u.user_posts ' . $find_key_match[$count_select] . ' ' . (int) $count . ' ' : '';
|
||||
$sql_where .= (sizeof($joined) > 1) ? " AND u.user_regdate " . $find_key_match[$joined_select] . ' ' . gmmktime(0, 0, 0, intval($joined[1]), intval($joined[2]), intval($joined[0])) : '';
|
||||
$sql_where .= (sizeof($active) > 1) ? " AND u.user_lastvisit " . $find_key_match[$active_select] . ' ' . gmmktime(0, 0, 0, $active[1], intval($active[2]), intval($active[0])) : '';
|
||||
$sql_where .= ($search_group_id) ? " AND u.user_id = ug.user_id AND ug.group_id = $search_group_id " : '';
|
||||
|
||||
if ($search_group_id)
|
||||
{
|
||||
$sql_from = ', ' . USER_GROUP_TABLE . ' ug ';
|
||||
}
|
||||
|
||||
if ($ipdomain && $auth->acl_get('m_ip'))
|
||||
{
|
||||
@ -829,7 +836,7 @@ switch ($mode)
|
||||
{
|
||||
$sql_where = " AND u.username LIKE '" . $db->sql_escape(substr($first_char, 0, 1)) . "%'";
|
||||
}
|
||||
|
||||
|
||||
// Are we looking at a usergroup? If so, fetch additional info
|
||||
// and further restrict the user info query
|
||||
if ($mode == 'group')
|
||||
@ -850,13 +857,13 @@ switch ($mode)
|
||||
switch ($group_row['group_type'])
|
||||
{
|
||||
case GROUP_OPEN:
|
||||
$group_row['group_type'] = 'OPEN';
|
||||
$group_row['l_group_type'] = 'OPEN';
|
||||
break;
|
||||
case GROUP_CLOSED:
|
||||
$group_row['group_type'] = 'CLOSED';
|
||||
$group_row['l_group_type'] = 'CLOSED';
|
||||
break;
|
||||
case GROUP_HIDDEN:
|
||||
$group_row['group_type'] = 'HIDDEN';
|
||||
$group_row['l_group_type'] = 'HIDDEN';
|
||||
|
||||
// Check for membership or special permissions
|
||||
if (!$auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel') && $group_row['user_id'] != $user->data['user_id'])
|
||||
@ -865,10 +872,10 @@ switch ($mode)
|
||||
}
|
||||
break;
|
||||
case GROUP_SPECIAL:
|
||||
$group_row['group_type'] = 'SPECIAL';
|
||||
$group_row['l_group_type'] = 'SPECIAL';
|
||||
break;
|
||||
case GROUP_FREE:
|
||||
$group_row['group_type'] = 'FREE';
|
||||
$group_row['l_group_type'] = 'FREE';
|
||||
break;
|
||||
}
|
||||
|
||||
@ -903,9 +910,9 @@ switch ($mode)
|
||||
|
||||
$template->assign_vars(array(
|
||||
'GROUP_DESC' => $group_row['group_description'],
|
||||
'GROUP_NAME' => $group_row['group_name'],
|
||||
'GROUP_NAME' => ($group_row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $group_row['group_name']] : $group_row['group_name'],
|
||||
'GROUP_COLOR' => $group_row['group_colour'],
|
||||
'GROUP_TYPE' => $user->lang['GROUP_IS_' . $group_row['group_type']],
|
||||
'GROUP_TYPE' => $user->lang['GROUP_IS_' . $group_row['l_group_type']],
|
||||
'GROUP_RANK' => $rank_title,
|
||||
|
||||
'AVATAR_IMG' => $avatar_img,
|
||||
@ -968,6 +975,21 @@ switch ($mode)
|
||||
// Some search user specific data
|
||||
if ($mode == 'searchuser' && ($config['load_search'] || $auth->acl_get('a_')))
|
||||
{
|
||||
$group_selected = request_var('search_group_id', 0);
|
||||
$s_group_select = '<option value="0"' . ((!$group_selected) ? ' selected="selected"' : '') . '> </option>';
|
||||
|
||||
$sql = 'SELECT group_id, group_name, group_type
|
||||
FROM ' . GROUPS_TABLE . '
|
||||
WHERE group_type <> ' . GROUP_HIDDEN . '
|
||||
ORDER BY group_name ASC';
|
||||
$result = $db->sql_query($sql);
|
||||
|
||||
while ($row = $db->sql_fetchrow($result))
|
||||
{
|
||||
$s_group_select .= '<option value="' . $row['group_id'] . '"' . (($group_selected == $row['group_id']) ? ' selected="selected"' : '') . '>' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</option>';
|
||||
}
|
||||
$db->sql_freeresult($result);
|
||||
|
||||
$template->assign_vars(array(
|
||||
'USERNAME' => $username,
|
||||
'EMAIL' => $email,
|
||||
@ -988,6 +1010,7 @@ switch ($mode)
|
||||
'S_SORT_OPTIONS' => $s_sort_key,
|
||||
'S_JOINED_TIME_OPTIONS' => $s_find_join_time,
|
||||
'S_ACTIVE_TIME_OPTIONS' => $s_find_active_time,
|
||||
'S_GROUP_SELECT' => $s_group_select,
|
||||
'S_SEARCH_ACTION' => "{$phpbb_root_path}memberlist.$phpEx$SID&mode=searchuser&form=$form&field=$field")
|
||||
);
|
||||
}
|
||||
@ -1193,17 +1216,17 @@ function show_profile($data)
|
||||
'ICQ_STATUS_IMG'=> (!empty($data['user_icq'])) ? '<img src="http://web.icq.com/whitepages/online?icq=' . $data['user_icq'] . '&img=5" width="18" height="18" border="0" />' : '',
|
||||
|
||||
'U_PROFILE' => "{$phpbb_root_path}memberlist.$phpEx$SID&mode=viewprofile&u=$user_id",
|
||||
'U_SEARCH_USER' => ($auth->acl_get('u_search')) ? "search.$phpEx$SID&search_author=" . urlencode($username) . "&show_results=posts" : '',
|
||||
'U_PM' => ($auth->acl_get('u_sendpm')) ? "ucp.$phpEx$SID&i=pm&mode=compose&u=$user_id" : '',
|
||||
'U_SEARCH_USER' => ($auth->acl_get('u_search')) ? "{$phpbb_root_path}search.$phpEx$SID&search_author=" . urlencode($username) . "&show_results=posts" : '',
|
||||
'U_PM' => ($auth->acl_get('u_sendpm')) ? "{$phpbb_root_path}ucp.$phpEx$SID&i=pm&mode=compose&u=$user_id" : '',
|
||||
'U_EMAIL' => $email,
|
||||
'U_WWW' => (!empty($data['user_website'])) ? $data['user_website'] : '',
|
||||
'U_ICQ' => ($data['user_icq']) ? "memberlist.$phpEx$SID&mode=contact&action=icq&u=$user_id" : '',
|
||||
'U_AIM' => ($data['user_aim']) ? "memberlist.$phpEx$SID&mode=contact&action=aim&u=$user_id" : '',
|
||||
'U_ICQ' => ($data['user_icq']) ? "{$phpbb_root_path}memberlist.$phpEx$SID&mode=contact&action=icq&u=$user_id" : '',
|
||||
'U_AIM' => ($data['user_aim']) ? "{$phpbb_root_path}memberlist.$phpEx$SID&mode=contact&action=aim&u=$user_id" : '',
|
||||
'U_YIM' => ($data['user_yim']) ? 'http://edit.yahoo.com/config/send_webmesg?.target=' . $data['user_yim'] . '&.src=pg' : '',
|
||||
'U_MSN' => ($data['user_msnm']) ? "memberlist.$phpEx$SID&mode=contact&action=msnm&u=$user_id" : '',
|
||||
'U_JABBER' => ($data['user_jabber']) ? "memberlist.$phpEx$SID&mode=contact&action=jabber&u=$user_id" : '',
|
||||
'U_MSN' => ($data['user_msnm']) ? "{$phpbb_root_path}memberlist.$phpEx$SID&mode=contact&action=msnm&u=$user_id" : '',
|
||||
'U_JABBER' => ($data['user_jabber']) ? "{$phpbb_root_path}memberlist.$phpEx$SID&mode=contact&action=jabber&u=$user_id" : '',
|
||||
|
||||
'S_ONLINE' => (intval($data['session_time']) >= time() - 300) ? true : false
|
||||
'S_ONLINE' => (intval($data['session_time']) >= time() - ($config['load_online_time'] * 60)) ? true : false
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -330,7 +330,11 @@ if ($mode == 'edit')
|
||||
// Delete triggered ?
|
||||
if ($mode == 'delete' && (($poster_id == $user->data['user_id'] && $user->data['is_registered'] && $auth->acl_get('f_delete', $forum_id) && $post_id == $topic_last_post_id) || $auth->acl_get('m_delete', $forum_id)))
|
||||
{
|
||||
$s_hidden_fields = '<input type="hidden" name="p" value="' . $post_id . '" /><input type="hidden" name="f" value="' . $forum_id . '" /><input type="hidden" name="mode" value="delete" />';
|
||||
$s_hidden_fields = build_hidden_fields(array(
|
||||
'p' => $post_id,
|
||||
'f' => $forum_id,
|
||||
'mode' => 'delete')
|
||||
);
|
||||
|
||||
if (confirm_box(true))
|
||||
{
|
||||
|
@ -39,7 +39,7 @@ if (!empty($_GET['id']) && !empty($_GET['sid']))
|
||||
require($phpbb_root_path . 'includes/acm/acm_' . $acm_type . '.'.$phpEx);
|
||||
require($phpbb_root_path . 'includes/db/' . $dbms . '.'.$phpEx);
|
||||
|
||||
$db = new sql_db();
|
||||
$db = new $sql_db();
|
||||
$cache = new acm();
|
||||
|
||||
// Connect to DB
|
||||
|
@ -306,7 +306,7 @@ switch ($mode)
|
||||
$user->set_cookie('sid', '', $set_time);
|
||||
|
||||
// We destroy the session here, the user will be logged out nevertheless
|
||||
$user->destroy();
|
||||
$user->session_kill();
|
||||
|
||||
meta_refresh(3, "{$phpbb_root_path}index.$phpEx$SID");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user