⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ucp_main.php

📁 通过基于Windows的图形化界面
💻 PHP
📖 第 1 页 / 共 3 页
字号:
					}					$unread_forum = ($row['forum_last_post_time'] > $forum_check) ? true : false;					// Which folder should we display?					if ($row['forum_status'] == ITEM_LOCKED)					{						$folder_image = ($unread_forum) ? 'forum_unread_locked' : 'forum_read_locked';						$folder_alt = 'FORUM_LOCKED';					}					else					{						$folder_image = ($unread_forum) ? 'forum_unread' : 'forum_read';						$folder_alt = ($unread_forum) ? 'NEW_POSTS' : 'NO_NEW_POSTS';					}					// Create last post link information, if appropriate					if ($row['forum_last_post_id'])					{						$last_post_time = $user->format_date($row['forum_last_post_time']);						$last_post_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&amp;p=" . $row['forum_last_post_id']) . '#p' . $row['forum_last_post_id'];					}					else					{						$last_post_time = $last_post_url = '';					}					$template->assign_block_vars('forumrow', array(						'FORUM_ID'				=> $forum_id, 						'FORUM_FOLDER_IMG'		=> $user->img($folder_image, $folder_alt),						'FORUM_FOLDER_IMG_SRC'	=> $user->img($folder_image, $folder_alt, false, '', 'src'),						'FORUM_IMAGE'			=> ($row['forum_image']) ? '<img src="' . $phpbb_root_path . $row['forum_image'] . '" alt="' . $user->lang[$folder_alt] . '" />' : '',						'FORUM_IMAGE_SRC'		=> ($row['forum_image']) ? $phpbb_root_path . $row['forum_image'] : '',						'FORUM_NAME'			=> $row['forum_name'],						'LAST_POST_IMG'			=> $user->img('icon_topic_latest', 'VIEW_LATEST_POST'),						'LAST_POST_SUBJECT'		=> $row['forum_last_post_subject'],						'LAST_POST_TIME'		=> $last_post_time,						'LAST_POST_AUTHOR'			=> get_username_string('username', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']),						'LAST_POST_AUTHOR_COLOUR'	=> get_username_string('colour', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']),						'LAST_POST_AUTHOR_FULL'		=> get_username_string('full', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']),						'U_LAST_POST_AUTHOR'		=> get_username_string('profile', $row['forum_last_poster_id'], $row['forum_last_poster_name'], $row['forum_last_poster_colour']),						'U_LAST_POST'			=> $last_post_url, 						'U_VIEWFORUM'			=> append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']))					);				}				$db->sql_freeresult($result);				// Subscribed Topics				$start = request_var('start', 0);					$sql = 'SELECT COUNT(topic_id) as topics_count					FROM ' . TOPICS_WATCH_TABLE . '					WHERE user_id = ' . $user->data['user_id'];				$result = $db->sql_query($sql);				$topics_count = (int) $db->sql_fetchfield('topics_count');				$db->sql_freeresult($result);				if ($topics_count)				{					$template->assign_vars(array(						'PAGINATION'	=> generate_pagination($this->u_action, $topics_count, $config['topics_per_page'], $start),						'PAGE_NUMBER'	=> on_page($topics_count, $config['topics_per_page'], $start),						'TOTAL_TOPICS'	=> ($topics_count == 1) ? $user->lang['VIEW_FORUM_TOPIC'] : sprintf($user->lang['VIEW_FORUM_TOPICS'], $topics_count))					);				}				$sql_array = array(					'SELECT'	=> 't.*',					'FROM'		=> array(						TOPICS_WATCH_TABLE	=> 'tw',						TOPICS_TABLE		=> 't'					),					'WHERE'		=> 'tw.user_id = ' . $user->data['user_id'] . '						AND t.topic_id = tw.topic_id',					'ORDER_BY'	=> 't.topic_last_post_time DESC'				);				if ($config['load_db_lastread'])				{					$sql_array['LEFT_JOIN'][] = array('FROM' => array(FORUMS_TRACK_TABLE => 'ft'), 'ON' => 'ft.forum_id = t.forum_id AND ft.user_id = ' . $user->data['user_id']);					$sql_array['LEFT_JOIN'][] = array('FROM' => array(TOPICS_TRACK_TABLE => 'tt'), 'ON' => 'tt.topic_id = t.topic_id AND tt.user_id = ' . $user->data['user_id']);					$sql_array['SELECT'] .= ', tt.mark_time, ft.mark_time AS forum_mark_time';				}				if ($config['load_db_track'])				{					$sql_array['LEFT_JOIN'][] = array('FROM' => array(TOPICS_POSTED_TABLE => 'tp'), 'ON' => 'tp.topic_id = t.topic_id AND tp.user_id = ' . $user->data['user_id']);					$sql_array['SELECT'] .= ', tp.topic_posted';				}				$sql = $db->sql_build_query('SELECT', $sql_array);				$result = $db->sql_query_limit($sql, $config['topics_per_page'], $start);				$topic_list = $topic_forum_list = $global_announce_list = $rowset = array();				while ($row = $db->sql_fetchrow($result))				{					$topic_list[] = $row['topic_id'];					$rowset[$row['topic_id']] = $row;					$topic_forum_list[$row['forum_id']]['forum_mark_time'] = ($config['load_db_lastread']) ? $row['forum_mark_time'] : 0;					$topic_forum_list[$row['forum_id']]['topics'][] = $row['topic_id'];					if ($row['topic_type'] == POST_GLOBAL)					{						$global_announce_list[] = $row['topic_id'];					}				}				$db->sql_freeresult($result);				$topic_tracking_info = array();				if ($config['load_db_lastread'])				{					foreach ($topic_forum_list as $f_id => $topic_row)					{						$topic_tracking_info += get_topic_tracking($f_id, $topic_row['topics'], $rowset, array($f_id => $topic_row['forum_mark_time']), ($f_id == 0) ? $global_announce_list : false);					}				}				else				{					foreach ($topic_forum_list as $f_id => $topic_row)					{						$topic_tracking_info += get_complete_topic_tracking($f_id, $topic_row['topics'], $global_announce_list);					}				}				foreach ($topic_list as $topic_id)				{					$row = &$rowset[$topic_id];					$forum_id = $row['forum_id'];					$topic_id = $row['topic_id'];					$unread_topic = (isset($topic_tracking_info[$topic_id]) && $row['topic_last_post_time'] > $topic_tracking_info[$topic_id]) ? true : false;					// Replies					$replies = ($auth->acl_get('m_approve', $forum_id)) ? $row['topic_replies_real'] : $row['topic_replies'];					if ($row['topic_status'] == ITEM_MOVED)					{						$topic_id = $row['topic_moved_id'];					}					// Get folder img, topic status/type related information					$folder_img = $folder_alt = $topic_type = '';					topic_status($row, $replies, $unread_topic, $folder_img, $folder_alt, $topic_type);										$view_topic_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&amp;t=$topic_id");										// Send vars to template					$template->assign_block_vars('topicrow', array(						'FORUM_ID'					=> $forum_id,						'TOPIC_ID'					=> $topic_id,						'FIRST_POST_TIME'			=> $user->format_date($row['topic_time']),						'LAST_POST_SUBJECT'			=> $row['topic_last_post_subject'],						'LAST_POST_TIME'			=> $user->format_date($row['topic_last_post_time']),						'LAST_VIEW_TIME'			=> $user->format_date($row['topic_last_view_time']),						'TOPIC_AUTHOR'				=> get_username_string('username', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),						'TOPIC_AUTHOR_COLOUR'		=> get_username_string('colour', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),						'TOPIC_AUTHOR_FULL'			=> get_username_string('full', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),						'U_TOPIC_AUTHOR'			=> get_username_string('profile', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),						'LAST_POST_AUTHOR'			=> get_username_string('username', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']),						'LAST_POST_AUTHOR_COLOUR'	=> get_username_string('colour', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']),						'LAST_POST_AUTHOR_FULL'		=> get_username_string('full', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']),						'U_LAST_POST_AUTHOR'		=> get_username_string('profile', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']),						'PAGINATION'		=> topic_generate_pagination($replies, append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . (($row['forum_id']) ? $row['forum_id'] : $forum_id) . "&amp;t=$topic_id")),						'REPLIES'			=> $replies,						'VIEWS'				=> $row['topic_views'],						'TOPIC_TITLE'		=> censor_text($row['topic_title']),						'TOPIC_TYPE'		=> $topic_type,						'LAST_POST_IMG'			=> $user->img('icon_topic_latest', 'VIEW_LATEST_POST'),						'NEWEST_POST_IMG'		=> $user->img('icon_topic_newest', 'VIEW_NEWEST_POST'),						'TOPIC_FOLDER_IMG'		=> $user->img($folder_img, $folder_alt),						'TOPIC_FOLDER_IMG_SRC'	=> $user->img($folder_img, $folder_alt, false, '', 'src'),						'TOPIC_ICON_IMG'		=> (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['img'] : '',						'TOPIC_ICON_IMG_WIDTH'	=> (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['width'] : '',						'TOPIC_ICON_IMG_HEIGHT'	=> (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['height'] : '',						'ATTACH_ICON_IMG'		=> ($auth->acl_get('u_download') && $auth->acl_get('f_download', $forum_id) && $row['topic_attachment']) ? $user->img('icon_topic_attach', $user->lang['TOTAL_ATTACHMENTS']) : '',						'S_TOPIC_TYPE'			=> $row['topic_type'],						'S_USER_POSTED'			=> (!empty($row['topic_posted'])) ? true : false,						'S_UNREAD_TOPIC'		=> $unread_topic,						'U_NEWEST_POST'			=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&amp;t=$topic_id&amp;view=unread") . '#unread',						'U_LAST_POST'			=> $view_topic_url . '&amp;p=' . $row['topic_last_post_id'] . '#p' . $row['topic_last_post_id'],						'U_VIEW_TOPIC'			=> $view_topic_url)					);				}			break;			case 'bookmarks':				if (!$config['allow_bookmarks'])				{					$template->assign_vars(array(						'S_NO_DISPLAY_BOOKMARKS'	=> true)					);					break;				}				include($phpbb_root_path . 'includes/functions_display.' . $phpEx);				$user->add_lang('viewforum');				$move_up = request_var('move_up', 0);				$move_down = request_var('move_down', 0);				$sql = 'SELECT MAX(order_id) as max_order_id					FROM ' . BOOKMARKS_TABLE . '					WHERE user_id = ' . $user->data['user_id'];				$result = $db->sql_query($sql);				$max_order_id = (int) $db->sql_fetchfield('max_order_id');				$db->sql_freeresult($result);				if ($move_up || $move_down)				{					if (($move_up && $move_up != 1) || ($move_down && $move_down != $max_order_id))					{						$order = ($move_up) ? $move_up : $move_down;						$order_total = $order * 2 + (($move_up) ? -1 : 1);								$sql = 'UPDATE ' . BOOKMARKS_TABLE . "							SET order_id = $order_total - order_id							WHERE order_id IN ($order, " . (($move_up) ? $order - 1 : $order + 1) . ')								AND user_id = ' . $user->data['user_id'];						$db->sql_query($sql);					}				}				if (isset($_POST['unbookmark']))				{					$s_hidden_fields = array('unbookmark' => 1);					$topics = (isset($_POST['t'])) ? array_keys(request_var('t', array(0 => 0))) : array();					$url = $this->u_action;					if (!sizeof($topics))					{						trigger_error('NO_BOOKMARKS_SELECTED');					}					foreach ($topics as $topic_id)					{						$s_hidden_fields['t'][$topic_id] = 1;					}					if (confirm_box(true))					{						$sql = 'DELETE FROM ' . BOOKMARKS_TABLE . '							WHERE user_id = ' . $user->data['user_id'] . '								AND ' . $db->sql_in_set('topic_id', $topics);						$db->sql_query($sql);						// Re-Order bookmarks (possible with one query? This query massaker is not really acceptable...)						$sql = 'SELECT topic_id FROM ' . BOOKMARKS_TABLE . '							WHERE user_id = ' . $user->data['user_id'] . '							ORDER BY order_id ASC';						$result = $db->sql_query($sql);						$i = 1;						while ($row = $db->sql_fetchrow($result))						{							$sql = 'UPDATE ' . BOOKMARKS_TABLE . "								SET order_id = $i								WHERE topic_id = {$row['topic_id']}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -