diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-04 21:31:35 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-04 21:31:35 +0000 |
commit | 5449c591a9721a63098f794a24e0bcef690ebb51 (patch) | |
tree | cffa50a6b77b053e3e738cada55f5623352977f5 /phpBB/includes/ucp/ucp_attachments.php | |
parent | 95ff1f3b64fdbf7d72fa86a94cf606a0369aa6bd (diff) | |
download | forums-5449c591a9721a63098f794a24e0bcef690ebb51.tar forums-5449c591a9721a63098f794a24e0bcef690ebb51.tar.gz forums-5449c591a9721a63098f794a24e0bcef690ebb51.tar.bz2 forums-5449c591a9721a63098f794a24e0bcef690ebb51.tar.xz forums-5449c591a9721a63098f794a24e0bcef690ebb51.zip |
- changed ucp classes to work with the new module system
- mcp is no longer working, i know.
git-svn-id: file:///svn/phpbb/trunk@5254 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/ucp/ucp_attachments.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_attachments.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/phpBB/includes/ucp/ucp_attachments.php b/phpBB/includes/ucp/ucp_attachments.php index 9e8cd2d2e8..e38c9a380e 100644 --- a/phpBB/includes/ucp/ucp_attachments.php +++ b/phpBB/includes/ucp/ucp_attachments.php @@ -13,16 +13,19 @@ * ucp_attachments * User attachments */ -class ucp_attachments extends module +class ucp_attachments { - function ucp_attachments($id, $mode) + function main($id, $mode) { global $template, $user, $db, $config, $phpEx, $phpbb_root_path, $SID; - $start = request_var('start', 0); - $delete = (isset($_POST['delete'])) ? true : false; - $confirm = (isset($_POST['confirm'])) ? true : false; - $delete_ids = isset($_REQUEST['attachment']) ? array_keys(array_map('intval', $_REQUEST['attachment'])) : array(); + $start = request_var('start', 0); + $sort_key = request_var('sk', 'a'); + $sort_dir = request_var('sd', 'a'); + + $delete = (isset($_POST['delete'])) ? true : false; + $confirm = (isset($_POST['confirm'])) ? true : false; + $delete_ids = isset($_REQUEST['attachment']) ? array_keys(array_map('intval', $_REQUEST['attachment'])) : array(); if ($delete && sizeof($delete_ids)) { @@ -49,9 +52,6 @@ class ucp_attachments extends module } } - $sort_key = request_var('sk', 'a'); - $sort_dir = request_var('sd', 'a'); - // Select box eventually $sort_key_text = array('a' => $user->lang['SORT_FILENAME'], 'b' => $user->lang['SORT_COMMENT'], 'c' => $user->lang['SORT_EXTENSION'], 'd' => $user->lang['SORT_SIZE'], 'e' => $user->lang['SORT_DOWNLOADS'], 'f' => $user->lang['SORT_POST_TIME'], 'g' => $user->lang['SORT_TOPIC_TITLE']); $sort_key_sql = array('a' => 'a.real_filename', 'b' => 'a.comment', 'c' => 'a.extension', 'd' => 'a.filesize', 'e' => 'a.download_count', 'f' => 'a.filetime', 'g' => 't.topic_title'); @@ -72,7 +72,7 @@ class ucp_attachments extends module $s_sort_dir .= '<option value="' . $key . '"' . $selected . '>' . $value . '</option>'; } - $order_by = $sort_key_sql[$sort_key] . ' ' . (($sort_dir == 'a') ? 'ASC' : 'DESC'); + $order_by = $sort_key_sql[$sort_key] . ' ' . (($sort_dir == 'a') ? 'ASC' : 'DESC'); $sql = 'SELECT COUNT(*) as num_attachments FROM ' . ATTACHMENTS_TABLE . ' @@ -104,7 +104,7 @@ class ucp_attachments extends module } else { - $view_topic = "{$phpbb_root_path}viewtopic.$phpEx$SID&t=" . $row['topic_id'] . '&p=' . $row['post_msg_id'] . '#' . $row['post_msg_id']; + $view_topic = "{$phpbb_root_path}viewtopic.$phpEx$SID&t={$row['topic_id']}&p={$row['post_msg_id']}#{$row['post_msg_id']}"; } $template->assign_block_vars('attachrow', array( @@ -155,7 +155,7 @@ class ucp_attachments extends module 'S_ORDER_SELECT' => $s_sort_dir) ); - $this->display($user->lang['UCP_ATTACHMENTS'], 'ucp_attachments.html'); + $this->tpl_name = 'ucp_attachments'; } } |